GET
/
alerts
List all alerts for a resource
curl --request GET \
  --url https://api.paygentic.io/v0/alerts \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "object": "alert",
      "id": "<string>",
      "resourceId": "<string>",
      "type": "wallet_low_balance",
      "config": {},
      "enabled": true,
      "notifyPeriod": 61,
      "recipients": [
        "jsmith@example.com"
      ],
      "lastNotifiedAt": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

resourceId
string
required
limit
integer
default:10
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0

Response

200
application/json

List of alerts

The response is of type object.