Skip to main content

list_executions

Get a list of executions belonging to the wallet.

Parameters

  • limit: (int) [optional] Limit results per request. Between 1 and 200. Default 50.
  • sort: (string) [optional] Sorting method of results;
    • oldest - Oldest first (Default)
    • newest - Newest first
  • marker: (string) [optional] The execution guid to start loading results from. Useful when you are making sequential requests to get data sets larger then the limit. It should be set to the last execution guid in the previous request. If the previous request contained no results or less results than the limit, you are at the end of the data set. If used, all other parameters should be the same as the previous request.

Returns

An array of execution objects.

Example

Request

{
"id": 1,
"jsonrpc": "2.0",
"method": "list_executions",
"params": {
"limit": 200,
}
}

Response

{
"id": 1,
"jsonrpc": "2.0",
"result": [
<EXECUTION_OBJECT>,
<EXECUTION_OBJECT>,
...
],
}