curl --request POST \
--url https://api.paygentic.io/v0/sources/{id}/events/bulk-reject \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"eventIds": [
"<string>"
]
}'
{
"rejected": 123
}
Reject multiple pending source events at once
curl --request POST \
--url https://api.paygentic.io/v0/sources/{id}/events/bulk-reject \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"eventIds": [
"<string>"
]
}'
{
"rejected": 123
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier for a source
Bulk rejection results
The response is of type object
.