Note: To find out how to authorize your requests and handle errors, go to Before You Begin.
After you configure a device for Payroc Cloud, program your POS to use the Submit Refund Instruction method to send a refund instruction to the payment device.
To return funds to a cardholder, complete the following:
Submit a refund instruction to the device.
View the status of the refund instruction.
View the details of the refund instruction.
You can also cancel a refund instruction if it hasn’t yet completed.
Step 1. Submit a refund instruction
To submit a refund instruction to a device, send a POST request to the Devices endpoint.
If your request is successful, we send the refund instruction to the device.
Note: The response returns a value of inProgress for the status field and an identifier for the instruction that you can use to check the status of the instruction. To get a link to view the details of the refund, go to Step 2.
Response
statusenumRequired
Indicates the current status of the instruction.
- `canceled` – The instruction was canceled before it was completed.
- `completed` – The instruction has completed. Use the link object to check the resource.
- `failure` – The instruction failed. Check the errorMessage field for more information.
- `inProgress` – The instruction is currently in progress.
Allowed values:
refundInstructionIdstringRequired1-36 characters
Unique identifier that we assigned to the refund instruction.
errorMessagestringOptional
Description of the error that caused the instruction to fail.
**Note:** We return this field only if the status is `failure`.
linkobjectOptionalRead-only
Object that contains HATEOAS links for the resource.
Before our gateway sends a response, it waits for up to a minute for the status of the instruction to change. We recommend that you keep the session open until the status of the instruction changes or the request times out.
If the status of the instruction doesn’t change, send another GET request. Our gateway waits up to a minute for the status of the instruction to change. Continue to send GET requests until the status changes.
Note: Wait until you receive a response from our gateway before you send another request.
Request parameters
To create your request, use the following parameters:
Path parameters
refundInstructionIdstringRequired1-36 characters
Unique identifier that we assigned to the refund instruction.
If your request is successful, we return the details of the refund instruction, including HATEOAS links to check the details of the refund. Use the HATEOAS links to get the refundId, which you need in Step 3.
If the status of the refund instruction is inProgress, our gateway waits up to a minute for the status to change before it returns a response.
Response
statusenumRequired
Indicates the current status of the instruction.
- `canceled` – The instruction was canceled before it was completed.
- `completed` – The instruction has completed. Use the link object to check the resource.
- `failure` – The instruction failed. Check the errorMessage field for more information.
- `inProgress` – The instruction is currently in progress.
Allowed values:
refundInstructionIdstringRequired1-36 characters
Unique identifier that we assigned to the refund instruction.
errorMessagestringOptional
Description of the error that caused the instruction to fail.
**Note:** We return this field only if the status is `failure`.
linkobjectOptionalRead-only
Object that contains HATEOAS links for the resource.
If your request is successful, we return the details of the refund.
Response
refundIdstringRequired=10 characters
Unique identifier that our gateway assigned to the refund.
processingTerminalIdstringRequired4-50 characters
Unique identifier that we assigned to the terminal.
orderobjectRequired
Object that contains information about the refund.
cardobjectRequired
Object that contains the details of the payment card.
transactionResultobjectRequired
Object that contains information about the transaction response details.
operatorstringOptional0-50 characters
Operator who requested the refund.
customerobjectOptional
Object that contains the customer's contact details and address information.
paymentobjectOptional
Object that contains information about a payment.
supportedOperationslist of enumsOptional
Array of operations that you can perform on the transaction.
- `capture` - Capture the payment.
- `refund` - Refund the payment.
- `fullyReverse` - Fully reverse the transaction.
- `partiallyReverse` - Partially reverse the payment.
- `incrementAuthorization` - Increase the amount of the authorization.
- `adjustTip` - Adjust the tip post-payment.
- `addSignature` - Add a signature to the payment.
- `setAsReady` - Set the transaction’s status to `ready`.
- `setAsPending` - Set the transaction’s status to `pending`.
customFieldslist of objectsOptional
Array of customField objects.
Example response
Response
1
{
2
"refundId": "CD3HN88U9F",
3
"processingTerminalId": "1234001",
4
"order": {
5
"orderId": "OrderRef6543",
6
"description": "Refund for order OrderRef6543",
7
"amount": 4999,
8
"currency": "USD",
9
"dateTime": "2024-07-02T15:30:00Z"
10
},
11
"card": {
12
"type": "Visa Credit",
13
"cardNumber": "453985******7062",
14
"expiryDate": "1230",
15
"entryMethod": "keyed"
16
},
17
"transactionResult": {
18
"status": "ready",
19
"responseCode": "A",
20
"type": "refund",
21
"approvalCode": "000000",
22
"authorizedAmount": -4999,
23
"currency": "USD",
24
"responseMessage": "OK5"
25
},
26
"customFields": [
27
{
28
"name": "yourCustomField",
29
"value": "abc123"
30
}
31
]
32
}
(Optional) Cancel a refund instruction
To cancel a refund instruction, send a DELETE request to the Refund Instructions endpoint.