Approve PositivePay Exception

Approve Positive Pay Exceptions

SecurityoAuth2
Request
path Parameters
paymentId
required
string

A unique identifier associated with the positive pay rule exception

Request Body schema: application/json
optional

Optional Request Body for RFP (Request for Payment) Exceptions

The acceptedAmount field allows you to modify the payment amount when approving a positive pay exception for instant payment rails (FedNow, RTP).

When to use:

  • Only applicable for FedNow and RTP payment methods
  • The original RFP must have amountModificationAllowed flag set to true
  • Not applicable for ACH, FEDWIRE, or SWIFT payment methods

Usage:

  • Without body: Approves the exception with the original payment amount
  • With acceptedAmount: Approves with a modified amount (if allowed)
acceptedAmount
number <decimal> [ 0.01 .. 10000000 ]

The modified amount to approve for the RFP exception.

  • Must be between 0.01 and 10,000,000
  • Cannot exceed the original payment amount
  • Only valid when the RFP allows amount modification
Responses
200

OK

400

Bad request

401

You are not authorized to access the resource

403

Accessing the resource you were trying to reach is forbidden

404

The resource you were trying to reach is not found

500

Internal server error

503

Service unavailable

default

search results matching criteria

put/v2/positivepay/exception/{paymentId}/approve
Request samples
application/json
{
  • "acceptedAmount": 1000
}
Response samples
application/json
{
  • "status": "Success",
  • "code": "string",
  • "message": "Exception approved successfully",
  • "data": "123456789"
}