Cancel an Ingo-issued check in routed or check_issued status.
curl --request POST \
--url https://payapi-sandbox.ingo.money/gateway/checkcancel \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"participant_id": "12345",
"check_number": "49379283",
"amount": 100.04,
"reason_code": 73,
"explanation": "Check Not Printed",
"participant_unique_id1": "2ac29937-1c52-4647-ba54-f1442ffae4d1"
}
'{
"status_code": 100,
"client_message": "Success",
"data": {
"check_number": "49379283",
"transaction_id": 2361543,
"request_timestamp": 1633470601,
"participant_unique_id1": "2ac29937-1c52-4647-ba54-f1442ffae4d1"
},
"time": "0.7614"
}Documentation Index
Fetch the complete documentation index at: https://developers.ingopayments.com/llms.txt
Use this file to discover all available pages before exploring further.
Unique participant identifier assigned by Ingo.
5"12345"
Check number assigned to the check disbursement transaction. Provided in the Process call response (check_number field).
"49379283"
Amount of the transaction. Must exactly match the original transaction amount.
x >= 0.01100.04
Reason code for the check cancel request. Must match the check's current transaction status. 73 = Check Not Printed (routed transactions only). 74 = Undelivered Check (issued transactions only). 75 = Client Request (issued transactions only). 76 = Internal Request (issued transactions only).
73, 74, 75, 76 73
Brief explanation for the check cancel request.
1 - 150"Check Not Printed"
Participant assigned unique ID for the original check Process request. Must exactly match the original value.
1 - 255"2ac29937-1c52-4647-ba54-f1442ffae4d1"
Check cancelled successfully
Numeric code describing the status of the API request. 100 = Success.
100
Text description associated with the status code.
"Success"
Information about identifiers associated with the transaction.
Hide child attributes
Check number assigned to the check disbursement transaction and provided in the Process call response.
"49379283"
Ingo assigned unique ID for the cancel reversal transaction.
2361543
Unix timestamp of the request.
1633470601
Participant assigned unique ID for the original request.
"2ac29937-1c52-4647-ba54-f1442ffae4d1"
Time in seconds to complete the request.
"0.7614"
curl --request POST \
--url https://payapi-sandbox.ingo.money/gateway/checkcancel \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"participant_id": "12345",
"check_number": "49379283",
"amount": 100.04,
"reason_code": 73,
"explanation": "Check Not Printed",
"participant_unique_id1": "2ac29937-1c52-4647-ba54-f1442ffae4d1"
}
'{
"status_code": 100,
"client_message": "Success",
"data": {
"check_number": "49379283",
"transaction_id": 2361543,
"request_timestamp": 1633470601,
"participant_unique_id1": "2ac29937-1c52-4647-ba54-f1442ffae4d1"
},
"time": "0.7614"
}