GET
/
executions
/
{execution-id}
curl --request GET \
  --url https://api.defer.run/public/v2/executions/{execution-id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "AAYR1m5T-trJR95j1BaiC_36IdTTLw",
    "state": "created",
    "function_name": "helloWorld",
    "function_id": "AAcRmz6-ICPpFZv5oK7_9vkIfDPssA",
    "scheduled_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

execution-id
string
required

The execution ID

Response

200 - application/json
data
object