v2

latestOpenAPI 3.1.02026-07-312303692.4 MB
Message Attempt

List Attempted Destinations

List endpoints attempted by a given message.

Additionally includes metadata about the latest message attempt. By default, endpoints are listed in ascending order by ID.

get/api/v1/app/{app_id}/msg/{msg_id}/endpoint

Path parameters

app_idstring required

The Application's ID or UID.

Example:unique-identifier

The Application's ID or UID.

msg_idstring required

The Message's ID or UID.

Example:unique-identifier

The Message's ID or UID.

Query parameters

limitinteger

Limit the number of returned items

Limit the number of returned items

iteratorstring nullable

The iterator returned from a prior invocation

Example:ep_1srOrx2ZWZBpBUvZwXKQmoEYga2

The iterator returned from a prior invocation

Response

iteratorstring nullable required
prevIteratorstring nullable
doneboolean required

Example response

{
  "data": [
    {
      "id": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga2",
      "url": "https://example.com/webhook/",
      "uid": "unique-identifier",
      "version": 1,
      "filterTypes": [
        "user.signup",
        "user.deleted"
      ],
      "channels": [
        "project_123",
        "group_2"
      ]
    }
  ],
  "iterator": "iterator",
  "prevIterator": "-iterator"
}