GET /api/scheduling/scheduledExecutions/{chainId}/{account}
GET
/api/scheduling/scheduledExecutions/{chainId}/{account}get all scheduled executions of an account
Parameters
Path Parameters
chainId*
Typestring
Requiredaccount*
Typestring
RequiredResponses
GET
/api/scheduling/scheduledExecutions/{chainId}/{account}Samples
cURL
curl -X GET http://localhost/api/scheduling/scheduledExecutions/{chainId}/{account}
JavaScript
fetch("http://localhost/api/scheduling/scheduledExecutions/{chainId}/{account}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/scheduling/scheduledExecutions/{chainId}/{account}");
Python
import requests
response = requests.get("http://localhost/api/scheduling/scheduledExecutions/{chainId}/{account}")
print(response.json())