Skip to main content
GET
/
runs
/
callbacks
/
{callback_uid}
Get run callback by UUID
curl --request GET \
  --url https://api.edges.run/v1/runs/callbacks/{callback_uid} \
  --header 'X-API-Key: <api-key>'
{
  "uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "parent_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "retry_count": 0,
  "created_at": "<string>",
  "status": "PENDING",
  "callback_url": "<string>",
  "http_status": 123,
  "batch_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "run_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "workspace_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

callback_uid
string<uuid>
required

Run callback UUID

Response

Returns the run callback

uid
string<uuid>

Run callback UUID

parent_uid
string<uuid> | null

Run callback UUID

retry_count
integer
default:0

Retry count

created_at
string

Created at

status
enum<string>

Callback status

Available options:
PENDING,
RUNNING,
FAILED,
SUCCESS
callback_url
string

Callback URL

http_status
integer

HTTP status code of the callback

batch_uid
string<uuid>

Batch UUID

run_uid
string<uuid>

Run UUID

workspace_uid
string<uuid>

Workspace UUID

I