Skip to main content
GET
/
connections
/
{id}
/
inbound-webhooks
/
{webhook_id}
/
deliveries
List recent receipts for an inbound webhook subscription
curl --request GET \
  --url https://api.example.com/connections/{id}/inbound-webhooks/{webhook_id}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "deliveries": [
    {
      "id": "<string>",
      "inbound_webhook_id": "<string>",
      "external_delivery_id": "<string>",
      "received_at": "<string>",
      "payload": "<string>",
      "verified": true,
      "processed_at": "<string>",
      "processing_error": "<string>",
      "retry_count": 123,
      "next_attempt_at": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.myme.so/llms.txt

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

Authorizations

Authorization
string
header
required

Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

Path Parameters

id
string
required
webhook_id
string
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200

Response

Recent receipts (verified + unverified)

deliveries
object[]
required