Skip to content

Suggested

Dashboard
GET /v1/notifications

Returns the audit log of the webhook notifications Conomy has attempted to deliver to your endpoint, newest first. Use it to confirm what was sent, diagnose an event you never received, and find the delivery you want to replay.

Scope: Results are always limited to your own deliveries. The merchant is resolved from the credential on the request and cannot be overridden by any query parameter, so there is no way to read another merchant's log.

Retention: Rows are kept indefinitely. Both first attempts and replays appear here; a replay is a separate row linked to the original through replayOf.

Filters are permissive: An unrecognised value for status, testMode, from or to is ignored rather than rejected, so a typo in a filter widens the result set instead of returning 400 Bad Request. Check the fields on the rows you get back rather than assuming a filter was applied.

Response shape: This operation returns deliveries and nextCursor at the top level, not the { error, message } envelope used by the older payment endpoints. Every row carries its full payload, which is why limit is capped at 200.

GET/v1/notifications
List notification deliveries

Bearer access token returned by the authentication endpoint.

API version selector for Conomy endpoints. Use 24-04-2025 for the current version.

Return only deliveries for this transaction.

Return only deliveries for this identity.

Return only deliveries for this event name. The authoritative list of values is the eventType enum of the webhook-transaction-event schema.

Return only deliveries whose raw discriminator matches, for example settled or refundCreated.

Return only deliveries with this outcome.

deliveredfailedskipped

true returns only sandbox deliveries, false only live ones. Omit it to return both.

Only deliveries created at or after this instant, inclusive. An unparseable value is ignored.

Only deliveries created strictly before this instant, exclusive. An unparseable value is ignored.

Maximum rows to return. Defaults to 50 and is clamped to 200; a value outside the range is clamped rather than rejected.

Default50

Opaque pagination cursor. Pass the nextCursor from the previous response to fetch the following page. Do not construct or parse it.

deliveriesobject[]required
nextCursorstringrequired

Cursor for the next page, or an empty string when this is the last page.

Request
GET /sandbox/v1/notifications HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
conomyhq-api-version: 24-04-2025
Response
{
  "deliveries": [
    {
      "id": "68a1b2c3d4e5f6a7b8c9d0e1",
      "createdAt": "2026-08-01T12:00:05.412Z",
      "status": "delivered",
      "httpStatus": 502,
      "attempts": 1,
      "testMode": false,
      "isReplay": false
    }
  ],
  "nextCursor": "string"
}