***
title: Re-present an ACH payment
icon: arrow-rotate-right
publishedDate: 2026-02-02T00:00:00.000Z
published: true
intro: Re-present an ACH payment if it fails.
---------------------------------------------
If an ACH payment has failed, we send an email to the merchant to let them know that the payment has failed. You can integrate with our API return the reason that the payment failed and then re-present the payment.
**Note:** When the merchant views the reason why the payment failed, they might have to contact their customer to fix the issue before they can re-present the payment.
## How it works
1. We email the merchant to let them know that an ACH payment has failed.
2. Merchant uses their POS to view the details of the payment and the reason the payment has failed.
3. Merchant contacts their customer to fix the issue.
4. Merchant uses their POS to re-present the payment.
## Your integration journey
1. View the payment details.
2. Re-present the payment.
3. (Optional) Re-present the payment again.
**Note:** You can re-present a payment up to two times.
## Things to consider
When you re-present a payment, don't use the same paymentId that you use to retrieve the payment.
In the response of the Retrieve Payment method, our gateway sends a returns object with a new paymentId, which you need to send in the Re-present Payment request.
```json
...
"returns": [
{
"paymentId": "GIJXAU3WUJ",
"date": "2025-06-23",
"returnCode": "R01",
"returnReason": "Insufficient Funds",
"represented": false,
"link": {
"rel": "self",
"method": "GET",
"href": "https://api.payroc.com/v1/bank-transfer-payments/GIJXAU3WUJ"
}
}
],
...
```
## Errors
If your request is unsuccessful, we return an error. For more information about errors, see [Errors](https://docs.payroc.com/api/errors).
## Step 1. View the payment details
To view the reason why the payment failed, send a GET request to our Bank Transfer Payments endpoint.
| Endpoint | Prefix | URL |
| :--------- | :--------- | :--------------------------------------------------------------------------------------------------------------------------------- |
| Test | `api.uat.` | [https://api.uat.payroc.com/v1/bank-transfer-payments/:paymentId](https://api.uat.payroc.com/v1/bank-transfer-payments/:paymentId) |
| Production | `api.` | [https://api.payroc.com/v1/bank-transfer-payments/:paymentId](https://api.payroc.com/v1/bank-transfer-payments/:paymentId) |
### Request parameters
### Example request
### Response fields
**Important:** Save the paymentId from the returns object for the re-presentment.
If your request is successful, our gateway sends a returns object that contains a returnCode field and a returnReason field that indicates the reason the payment failed.
### Example response
## Step 2. Re-present the payment
To retry the payment, send a POST request to our Bank Transfer Payments endpoint.
| Endpoint | Prefix | URL |
| :--------- | :--------- | :----------------------------------------------------------------------------------------------------------------------------------------------------- |
| Test | `api.uat.` | [https://api.uat.payroc.com/v1/bank-transfer-payments/:paymentId/represent](https://api.uat.payroc.com/v1/bank-transfer-payments/:paymentId/represent) |
| Production | `api.` | [https://api.payroc.com/v1/bank-transfer-payments/:paymentId/represent](https://api.payroc.com/v1/bank-transfer-payments/:paymentId/represent) |
### Request parameters
### Example request
### Response fields
If your request is successful, our gateway sends the re-presentment to NACHA to retry the payment.
### Example response
## Step 3. (Optional) Re-present the payment again
If the re-presentment fails, you can send a second and final re-presentment request. To do this:
1. Save the paymentId from the response in Step 2. This is the paymentId of the failed re-presentment.
2. Use our [Retrieve Payment](https://docs.payroc.com/api/schema/bank-transfer-payments/payments/retrieve) method with the paymentId of the failed re-presentment. In the response, our gateway sends a returns object with a new paymentId.
3. Use our [Re-present Payment](https://docs.payroc.com/api/schema/bank-transfer-payments/payments/represent) method with this new paymentId to re-present the payment for a final time.