Skip to main content
GET
/
api
/
webhooks
/
{webhook_id}
/
deliveries
List webhook deliveries
curl --request GET \
  --url https://api.mymarky.ai/api/webhooks/{webhook_id}/deliveries \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "event": "<string>",
    "post_id": "<string>",
    "status_code": 123,
    "response_time_ms": 123,
    "attempt": 123,
    "success": true,
    "error": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.mymarky.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

webhook_id
string
required

Query Parameters

limit
integer
default:20

Max results (1-50)

Required range: 1 <= x <= 50

Response

Successful Response

id
string
required
event
string
required
post_id
string | null
required
status_code
integer | null
required
response_time_ms
integer | null
required
attempt
integer
required
success
boolean
required
error
string | null
required
created_at
string<date-time>
required