Alerts

List deliveries to a channel

GET
/v1/channels/{id}/deliveries
AuthorizationBearer <token>

API key minted via POST /v1/api-keys (format mk_live_...)

In: header

Path Parameters

idstring

Channel id (dest_...).

Length1 <= length

Query Parameters

limit?integer
Range1 <= value <= 200

Response Body

application/json

application/json

application/json

curl -X GET "https://api.mentio.dev/v1/channels/dest_abc123/deliveries"
{
  "data": [
    {
      "id": "string",
      "kind": "mention",
      "status": "pending",
      "attempts": 0,
      "error": "string",
      "sentAt": "string",
      "createdAt": "string",
      "alert": {
        "name": "string"
      },
      "mention": {
        "id": "string",
        "url": "string",
        "text": "string"
      }
    }
  ]
}
{
  "error": {
    "code": "unauthorized",
    "message": "string",
    "requestId": "string",
    "retryAfterSeconds": 0
  }
}
{
  "error": {
    "code": "unauthorized",
    "message": "string",
    "requestId": "string",
    "retryAfterSeconds": 0
  }
}