Skip to main content
GET
/
v1
/
webhooks
/
{webhookId}
/
deliveries
/
{deliveryId}
Obtener delivery por ID
curl --request GET \
  --url https://api-prod.studio.getsupervisor.ai/v1/webhooks/{webhookId}/deliveries/{deliveryId} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "webhookId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "subscriptionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "eventKey": "<string>",
  "status": "queued",
  "attempts": 1,
  "requestMethod": "GET",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "nextAttemptAt": "2023-11-07T05:31:56Z",
  "lastError": "<string>",
  "responseStatus": 123,
  "requestHeaders": {},
  "requestBody": {},
  "responseBody": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

x-workspace-id
string<uuid>
required

Identificador del workspace multi-tenant.

Path Parameters

webhookId
string<uuid>
required

Identificador del webhook (UUID v4)

deliveryId
string<uuid>
required

Identificador del delivery/notificación (UUID v4)

Response

OK

id
string<uuid>
required
webhookId
string<uuid>
required
subscriptionId
string<uuid>
required
eventKey
string
required

Clave del evento (ej. call.callEnded)

status
enum<string>
required
Available options:
queued,
sending,
success,
failed
attempts
integer<int32>
required
Required range: x >= 0
requestMethod
enum<string>
required
Available options:
GET,
POST
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
nextAttemptAt
string<date-time> | null
lastError
string | null
responseStatus
integer<int32> | null
requestHeaders
object
requestBody
object
responseBody
string | null