Skip to main content
GET
/
executions
List execution history
curl --request GET \
  --url http://localhost:5173/api/flowdrop/executions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "workflow_id": "<string>",
      "status": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "updated": "2023-11-07T05:31:56Z"
    }
  ],
  "message": "<string>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Query Parameters

workflow_id
string<uuid>

Filter by workflow UUID

status
enum<string>

Filter by execution status

Available options:
pending,
running,
completed,
failed,
cancelled
limit
integer
default:50

Maximum number of results

Required range: 1 <= x <= 100
offset
integer
default:0

Number of results to skip

Required range: x >= 0

Response

Execution history retrieved successfully

success
boolean

Whether the request was successful

data
object[]

Response data (type varies by endpoint)

message
string

Response message

error
string

Error message (if any)