Send a referenced refund to a bank account

A merchant can use the payment details of a card payment to run a referenced refund. To run a referenced refund, the merchant should first retrieve the payment information in one of the following ways:
  • Use the paymentId.
  • Search for the payment using payment information such as the bank account number.

Integration steps

Step 1. Retrieve information about the original payment.
(Optional) Step 1a. Retrieve information about the payment using the paymentId.
(Optional) Step 1b. Retrieve information about the payment without the paymentId.
Step 2. Refund the payment.

Before you begin

Bearer tokens

Use our Identity Service to generate a Bearer token to include in the header of your requests. To generate your Bearer token, complete the following steps:
  1. Include your API key in the x-api-key parameter in the header of a POST request.
  2. Send your request to https://identity.payroc.com/authorize.
You need to generate a new Bearer token before the previous Bearer token expires.

Example request

curl --location --request POST 'https://identity.payroc.com/authorize' --header 'x-api-key: <api key>'

Example response

If your request is successful, we return a response that contains your Bearer token, information about its scope, and when it expires.
{
"access_token": "eyJhbGc....adQssw5c",
"expires_in": 3600,
"scope": "service_a service_b",
"token_type": "Bearer"
}

Headers

To create the header of each GET request, you must include the following parameters:
  • Content-Type: Include application/json as the value for this parameter.
  • Authorization: Include your Bearer token in this parameter.
curl
-H "Content-Type: application/json"
-H "Authorization: <Bearer token>"
To create the header of each POST request, you must include the following parameters:
  • Content-Type: Include application/json as the value for this parameter.
  • Authorization: Include your Bearer token in this parameter.
  • Idempotency-Key: Include a UUID v4 to make the request idempotent.
curl
-H "Content-Type: application/json"
-H "Authorization: <Bearer token>"
-H "Idempotency-Key: <UUID v4>"

Errors

If your request is unsuccessful, we return an error. For more information about errors, see Errors.

Step 1 - Retrieve the details of the payment

1a (Optional) – Retrieve the details of the payment with a paymentId

Send a GET request with the paymentID to our Bank Transfer Payments endpoint. Testing endpoint: https://api.uat.payroc.com/v1/bank-transfer-payments/{paymentid}
Production endpoint: https://api.payroc.com/v1/bank-transfer-payments/{paymentid}

Request parameters

To create the body of your request, use the following parameters:

Path parameters

Example request

Request
curl --request get \
--url https://api.payroc.com/v1/bank-transfer-payments/abc123 \
--header 'Authorization: Bearer <access token>'

Response fields

If your request is successful, our gateway returns the details of the payment. The response contains the following fields:

Response Schema

Status Code 200

Successful request. Returns the specific payment.
Response body

Example response

Response
application/json
{
"paymentId": "M2MJOG6O2Y",
"processingTerminalId": "1017",
"order": {
"orderId": "orderpop123",
"dateTime": "2023-07-25T13:08:45.179Z",
"description": "sample order",
"amount": 11110,
"currency": "USD",
"breakdown": {
"subtotal": 10000,
"tip": {
"type": "percentage",
"amount": 1010,
"percentage": 10
},
"taxes": [
{
"name": "VAT",
"rate": 1,
"amount": 100
}
]
}
},
"customer": {
"contactMethods": [
{
"type": "email",
"value": "[email protected]"
}
],
"notificationLanguage": "en"
},
"bankAccount": {
"type": "ach",
"secCode": "web",
"accountType": "checking",
"nameOnAccount": "Joe Bloggs",
"accountNumber": "****1010",
"routingNumber": "053200983",
"secureToken": {
"secureTokenId": "MREF_8d9b44e4-fd9c-45a7-b4b5-5e3d591dd385tK",
"customerName": "Joe Bloggs",
"token": "2967534039611822",
"status": "notValidated",
"link": {
"rel": "self",
"method": "GET",
"href": "https://api.payroc.com/v1/processing-terminals/1017/secure-tokens/MREF_8d9b44e4-fd9c-45a7-b4b5-5e3d591dd385tK"
}
}
},
"transactionResult": {
"type": "payment",
"status": "ready",
"authorizedAmount": 11110,
"currency": "USD",
"responseCode": "A",
"responseMessage": "NoError",
"processorResponseCode": "0"
}
}

1b (Optional) – Retrieve the details of the payment without a paymentId

Send a GET request to our Bank Transfer Payments endpoint. To filter your results, use query parameters. Test endpoint: https://api.uat.payroc.com/v1/bank-transfer-payments
Production endpoint: https://api.payroc.com/v1/bank-transfer-payments

Request parameters

To create the body of your request, use the following parameters:

Query parameters

Example request

Request
curl --request get \
--url 'https://api.payroc.com/v1/bank-transfer-payments?processingTerminalId=abc123' \
--header 'Authorization: Bearer <access token>'

Response fields

If your request is successful, our gateway returns a list of payments that match the query parameters. The response contains the following fields:

Response Schema

Status Code 200

Successful request. Returns a list of payments.
Response body

Example response

Response
application/json
{
"limit": 2,
"count": 2,
"hasMore": true,
"data": [
{
"paymentId": "GTNOY9O4R4",
"processingTerminalId": "1017",
"order": {
"orderId": "602",
"dateTime": "2023-05-16T15:53:18.000Z",
"description": "sample order",
"amount": 12100,
"currency": "CAD",
"breakdown": {
"subtotal": 10000,
"tip": {
"type": "percentage",
"amount": 1100,
"percentage": 10
},
"taxes": [
{
"name": "VAT",
"rate": 10,
"amount": 1000
}
]
}
},
"customer": {
"contactMethods": [
{
"type": "email",
"value": "[email protected]"
}
],
"notificationLanguage": "en"
},
"bankAccount": {
"type": "pad",
"nameOnAccount": "Joe Bloggs",
"accountNumber": "*******8909",
"transitNumber": "12345",
"institutionNumber": "123"
},
"transactionResult": {
"type": "payment",
"status": "ready",
"authorizedAmount": 12100,
"currency": "CAD",
"responseCode": "A"
}
},
{
"paymentId": "E29U8OU8Q4",
"processingTerminalId": "1017",
"order": {
"orderId": "541",
"dateTime": "2023-05-16T15:52:56.000Z",
"description": "test",
"amount": 12100,
"currency": "CAD",
"breakdown": {
"subtotal": 10000,
"tip": {
"type": "percentage",
"amount": 1100,
"percentage": 10
},
"taxes": [
{
"name": "VAT",
"rate": 10,
"amount": 1000
}
]
}
},
"customer": {
"contactMethods": [
{
"type": "email",
"value": "[email protected]"
}
],
"notificationLanguage": "en"
},
"bankAccount": {
"type": "pad",
"nameOnAccount": "Joe Bloggs",
"accountNumber": "*******8909",
"transitNumber": "12345",
"institutionNumber": "123"
},
"transactionResult": {
"type": "payment",
"status": "ready",
"authorizedAmount": 12100,
"currency": "CAD",
"responseCode": "A"
}
}
],
"links": [
{
"rel": "next",
"method": "get",
"href": "https://api.payroc.com/v1/bank-transfer-payments?limit=2&processingTerminalId=1017&after=E29U8OU8Q4"
},
{
"rel": "previous",
"method": "get",
"href": "https://api.payroc.com/v1//bank-transfer-payments?limit=2&processingTerminalId=1017&before=GTNOY9O4R4"
}
]
}

Step 2 - Refund the payment

To refund the payment, send a POST request to our Bank Transfer Payments Refund endpoint. Test endpoint: https://api.uat.payroc.com/v1/bank-transfer-payments{paymentid}/refund
Production endpoint: https://api.payroc.com/v1/bank-transfer-payments{paymentid}/refund

Request parameters

To create the body of your request, use the following parameters:

Path parameters

Header parameters

Body parameters

Example request

Request
curl --request post \
--url https://api.payroc.com/v1/bank-transfer-payments/abc123/refund \
--header 'Authorization: Bearer <access token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: abc123' \
--data '{"amount":10000,"description":"amount to refund"}'

Response fields

If your request is successful, our gateway refunds the payment. The response contains the following fields:

Response Schema

Status Code 200

Successful request. We refunded the payment.
Response body

Example response

Response
application/json
{
"paymentId": "M12F8SUHGM",
"processingTerminalId": "1017",
"order": {
"orderId": "243",
"dateTime": "2023-07-25T21:57:11.000Z",
"description": "amount to refund",
"amount": 11110,
"currency": "CAD",
"breakdown": {
"subtotal": 10000,
"tip": {
"type": "percentage",
"amount": 1010,
"percentage": 10
},
"taxes": [
{
"name": "VAT",
"rate": 1,
"amount": 100
}
]
}
},
"customer": {
"contactMethods": [
{
"type": "email",
"value": "[email protected]"
}
],
"notificationLanguage": "en"
},
"bankAccount": {
"type": "pad",
"nameOnAccount": "Joe Bloggs",
"accountNumber": "****9031",
"transitNumber": "14574",
"institutionNumber": "644",
"secureToken": {
"secureTokenId": "MREF_465772d1-ab4e-4881-8052-5021a745ed18Df",
"customerName": "Joe Bloggs",
"token": "2967536686508441",
"status": "notValidated",
"link": {
"rel": "self",
"method": "GET",
"href": "https://api.payroc.com/v1/processing-terminals/1017/secure-tokens/MREF_465772d1-ab4e-4881-8052-5021a745ed18Df"
}
}
},
"transactionResult": {
"type": "payment",
"status": "reversal",
"authorizedAmount": 11110,
"currency": "CAD",
"responseCode": "A"
}
}