Skip to content

GET /api/scheduling/scheduledExecutions/{chainId}/{account}

GET
/api/scheduling/scheduledExecutions/{chainId}/{account}

get all scheduled executions of an account

Parameters

Path Parameters

chainId*
Typestring
Required
account*
Typestring
Required

Responses

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())
Powered by VitePress OpenAPI