Run an unreferenced refund for a card payment

A merchant can return a payment to a customer’s card without a paymentId by running an unreferenced refund.

Integration steps

Step 1. 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 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. Refund the payment

To refund a card transfer payment, send a POST request to the Refund endpoint. Test endpoint: https://api.uat.payroc.com/v1/refunds
Production endpoint: https://api.payroc.com/v1/refunds

Request parameters

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

Header parameters

Body parameters

Example request

Request
curl --request post \
--url https://api.payroc.com/v1/refunds \
--header 'Authorization: Bearer <access token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: abc123' \
--data '{"processingTerminalId":"1023","order":{"orderId":"1023_refund_oa8","description":"refund example","amount":1000,"currency":"USD"},"channel":"web","refundMethod":{"type":"card","cardDetails":{"entryMethod":"keyed","keyedData":{"dataFormat":"plainText","device":{"type":"DATECS_BLUEPAD50","serialNumber":"WPC202833004712"},"expiryDate":"0328","cardNumber":"5001650000000000"}}}}'

Response fields

If your request is successful, we refund the card transfer payment and return a response. The response contains the following fields:

Response Schema

Status Code 201

Successful request. We processed the refund.
Response headers
Response body

Example response

Response
application/json
{
"refundId": "CD3HN88U9F",
"processingTerminalId": "1023",
"order": {
"orderId": "1023_refund_oa8",
"dateTime": "2023-07-27T08:51:02.910Z",
"description": "refund example",
"amount": 1000,
"currency": "USD"
},
"card": {
"type": "MasterCard",
"entryMethod": "keyed",
"cardNumber": "500165******0000",
"expiryDate": "0328"
},
"transactionResult": {
"type": "refund",
"status": "ready",
"approvalCode": "000000",
"authorizedAmount": -1000,
"currency": "USD",
"responseCode": "A",
"responseMessage": "OK5"
}
}