Executions
Searches executions using the provided filters and returns matching results.
Page number
0Page size
20Filter by source external IDs
Filter by status
Execution search response
Unauthorized
Forbidden
Internal Server Error
POST /api/executions/search HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 74
{
"filters": {},
"page": 0,
"size": 20,
"sources": [
"source1"
],
"status": "pending"
}{
"data": [
{
"id": 1,
"inserted_at": "2026-06-10T10:00:00Z"
}
]
}Retrieves executions, optionally filtered by execution group.
Filter by execution group ID
Executions response
Unauthorized
Forbidden
Internal Server Error
GET /api/execution_groups/{execution_group_id}/executions HTTP/1.1
Accept: */*
{
"data": [
{
"id": 1,
"inserted_at": "2026-06-10T10:00:00Z"
}
]
}Retrieves executions, optionally filtered by execution group.
Filter by execution group ID
Executions response
Unauthorized
Forbidden
Internal Server Error
GET /api/executions HTTP/1.1
Accept: */*
{
"data": [
{
"id": 1,
"inserted_at": "2026-06-10T10:00:00Z"
}
]
}Retrieves detailed information for the specified execution group.
Execution group ID
Execution group response
Unauthorized
Forbidden
Not found
Internal Server Error
GET /api/execution_groups/{id} HTTP/1.1
Accept: */*
{
"data": {
"df_content": {},
"id": 1,
"inserted_at": "2026-06-10T10:00:00Z"
}
}Retrieves all execution groups available to the current user.
Execution groups response
Unauthorized
Forbidden
Internal Server Error
GET /api/execution_groups HTTP/1.1
Accept: */*
{
"data": [
{
"df_content": {},
"id": 1,
"inserted_at": "2026-06-10T10:00:00Z"
}
]
}Creates a new execution group using the provided execution parameters.
Execution group response
Unauthorized
Forbidden
Unprocessable Entity
Internal Server Error
POST /api/execution_groups HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 57
{
"df_content": {
"key": "value"
},
"implementation_ids": [
1,
2
]
}{
"data": {
"df_content": {},
"id": 1,
"inserted_at": "2026-06-10T10:00:00Z"
}
}Last updated