Skip to main content
GET
/
webhooks
/
{webhookId}
/
events
/
{eventId}
Get delivery detail for a webhook event
curl --request GET \
  --url https://api.quo.com/webhooks/{webhookId}/events/{eventId} \
  --header 'Authorization: <api-key>' \
  --header 'Quo-Api-Version: <quo-api-version>'
{
  "data": {
    "id": "msg_2abcDEFghiJKLmnoPQRstu",
    "eventType": "message.received",
    "createdAt": "2026-01-01T00:00:00Z",
    "requestBody": {
      "context": {
        "contacts": {
          "ids": [
            "CTsampleContact01234"
          ],
          "lookupStatus": "matched"
        },
        "conversationId": "CNsampleconversation000000000000",
        "participants": {
          "external": [
            "+15555551234"
          ],
          "resolution": "available",
          "workspace": [
            "+15555555678"
          ]
        },
        "phoneNumberId": "PNsamplephonenumber000000000000",
        "phoneNumberType": "shared",
        "userId": "USsampleus"
      },
      "links": {
        "quo": "https://my.quo.com/inbox/PNsamplephonenumber000000000000/c/CNsampleconversation000000000000?at=ACsampleactivity0000000000000000"
      },
      "resource": {
        "answeredAt": "2026-03-30T18:00:00.000Z",
        "completedAt": "2026-03-30T18:00:00.000Z",
        "createdAt": "2026-03-30T18:00:00.000Z",
        "direction": "incoming",
        "duration": 42,
        "hasVoicemail": false,
        "id": "ACsampleactivity0000000000000000",
        "status": "answered",
        "updatedAt": "2026-03-30T18:00:00.000Z"
      }
    },
    "attempts": [
      {
        "id": "atmpt_2abcDEFghiJKLmnoPQRstu",
        "timestamp": "2026-01-01T00:00:00Z",
        "status": "success",
        "responseStatusCode": 200,
        "responseBody": "{\"ok\":true}",
        "responseDurationMs": 123,
        "triggerType": "scheduled",
        "url": "https://example.com/webhook"
      }
    ]
  }
}
{
"message": "/webhookId: Expected string to match '^[0-9]+$'",
"docs": "https://quo.com/docs",
"title": "Bad Request",
"errors": [
{
"path": "/webhookId",
"message": "Expected string to match '^[0-9]+$'",
"value": "abc123",
"schema": {
"type": "String",
"pattern": "^[0-9]+$"
}
}
]
}
{
"message": "You are unauthorized to access the webhook",
"docs": "https://quo.com/docs",
"title": "Unauthorized"
}
{
"message": "You are forbidden to access the webhook",
"docs": "https://quo.com/docs",
"title": "Forbidden"
}
{
"message": "Webhook with ID 123 not found",
"docs": "https://quo.com/docs",
"title": "Not Found"
}
{
"message": "An unknown error occurred",
"docs": "https://quo.com/docs",
"title": "Unknown Error"
}

Authorizations

Authorization
string
header
required

Headers

Quo-Api-Version
enum<string>
required

API version header. Supported values: 2026-03-30

Available options:
2026-03-30

Path Parameters

webhookId
string
required

The unique identifier of a webhook

Pattern: ^[0-9]+$
Example:

"123"

eventId
string
required

The unique identifier of the dispatched event.

Example:

"msg_2abcDEFghiJKLmnoPQRstu"

Response

OK

data
object
required