Skip to main content
GET
/
client
/
executions
/
{execution_id}
Get client workflow execution detail
curl --request GET \
  --url http://localhost:8080/api/v1/client/executions/{execution_id} \
  --header 'Authorization: <api-key>'
{
  "data": {
    "cancelled_at": "<string>",
    "completed_at": "<string>",
    "contact": {
      "email": "<string>",
      "id": 123
    },
    "contact_id": 123,
    "created_at": "<string>",
    "email_clicked": true,
    "email_clicked_at": "<string>",
    "email_opened": true,
    "email_opened_at": "<string>",
    "error_message": "<string>",
    "executed_at": "<string>",
    "id": 123,
    "is_test": true,
    "max_retries": 123,
    "retry_count": 123,
    "scheduled_at": "<string>",
    "sent_email_reference": {
      "id": "<string>"
    },
    "skip_reason": "<string>",
    "status_text": "<string>",
    "updated_at": "<string>",
    "workflow": {
      "id": 123,
      "name": "<string>"
    },
    "workflow_id": 123
  },
  "errors": [
    {
      "condition": "format",
      "error": "Invalid email format",
      "key": "email"
    }
  ],
  "message": "Operation successful",
  "meta": {},
  "success": true
}

Authorizations

Authorization
string
header
required

JWT Bearer token or raw API key via Authorization header

Path Parameters

execution_id
integer
required

Execution ID

Response

OK

data
object
errors
object[]
message
string
Example:

"Operation successful"

meta
object
success
boolean
Example:

true