curl --request GET \
--url https://api.paygentic.io/v0/sources/{id}/events \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"sourceId": "<string>",
"externalEventId": "<string>",
"status": "pending",
"errorMessage": "<string>",
"usageEventIds": [
"<string>"
],
"rawData": {},
"processedBy": "<string>",
"processedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
List events for a specific source with optional status filtering
curl --request GET \
--url https://api.paygentic.io/v0/sources/{id}/events \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"sourceId": "<string>",
"externalEventId": "<string>",
"status": "pending",
"errorMessage": "<string>",
"usageEventIds": [
"<string>"
],
"rawData": {},
"processedBy": "<string>",
"processedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier for a source
Filter events by status
pending
, processed
, failed
, rejected
1 <= x <= 100
x >= 0
List of source events
The response is of type object
.