ListExecutions
List Executions
List all matching executions. By default all executions of the instance are returned that have at least one execution target. Make sure to include a limit and sorting for pagination.
Required permission:
action.execution.read
Request Body
application/json
pagination?
List limitations and ordering.
sortingColumn?string
The field the result is sorted by. The default is the creation date. Beware that if you change this, your result pagination might be inconsistent.
Value in
"EXECUTION_FIELD_NAME_UNSPECIFIED" | "EXECUTION_FIELD_NAME_ID" | "EXECUTION_FIELD_NAME_CREATED_DATE" | "EXECUTION_FIELD_NAME_CHANGED_DATE"filters?
Define the criteria to query for.
[key: string]?never
Response Body
application/json
application/json
curl -X POST "https://loading/v2/actions/executions/search" \ -H "Content-Type: application/json" \ -d '{}'{
"pagination": {
"totalResult": 0,
"appliedLimit": 0
},
"executions": [
{
"condition": {
"event": {
"all": true
}
},
"creationDate": "1s",
"changeDate": "1s",
"targets": [
"string"
]
}
]
}{
"code": "not_found",
"message": "string",
"detail": {
"type": "string",
"value": "string",
"debug": {}
}
}Was this page helpful?