curl "http://localhost:9090/list_operations"
const response = await fetch('http://localhost:9090/list_operations');
const operations = await response.json();
import requests
response = requests.get('http://localhost:9090/list_operations')
operations = response.json()
[
{
"message_id": "0x123...",
"status": "pending",
"attempts": 1,
"last_attempt": "2024-01-01T12:00:00Z"
}
]
HTTP API
List Operations
GET
/
list_operations
curl "http://localhost:9090/list_operations"
const response = await fetch('http://localhost:9090/list_operations');
const operations = await response.json();
import requests
response = requests.get('http://localhost:9090/list_operations')
operations = response.json()
[
{
"message_id": "0x123...",
"status": "pending",
"attempts": 1,
"last_attempt": "2024-01-01T12:00:00Z"
}
]
List pending messages in operation queues. Returns current messages being processed by the relayer.
Array of pending operations
[
{
"message_id": "0x123...",
"status": "pending",
"attempts": 1,
"last_attempt": "2024-01-01T12:00:00Z"
}
]
curl "http://localhost:9090/list_operations"
const response = await fetch('http://localhost:9090/list_operations');
const operations = await response.json();
import requests
response = requests.get('http://localhost:9090/list_operations')
operations = response.json()
Was this page helpful?
⌘I