Skip to main content
Version: 1.0.2

Request For Payment Response

The RequestForPaymentResponse API enables to repond the respective payment request (RFP_IN) from the beneficiary.

Method: POST

{{URL}}/rtp/rpc/TransactionService/RequestForPaymentResponse

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription
FedNow

referenceNumber

Mandatory

String

Reference number of the inbound request for payment

Example – "20240328011002725axj5LnqYiPkISNM"

status

Mandatory

String

Response status of the transaction

Possible response statuses – PRES, ACTC, RJCT.

Example – "PRES"

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "FEDNOW"

reason

Mandatory

Object

code

Mandatory

String

Reason code of the rejection status

Example – "AC02"

acceptedAmount

Mandatory

Object

amount

Mandatory

Number

Amount accepted for the request

Example – 1500

currency

Mandatory

String

Currency code of the accepted amount

Example – "69988022968"

TCH

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "TCH"

referenceNumber

Mandatory

String

Reference number of the inbound request for payment

Example – "M20240319111112222T1BTST62015255801"

status

Mandatory

String

Response status of the transaction

Example – "RJCT"

reason

Mandatory

Object

code

Mandatory

String

Reason code of the rejection status

Example – "AC06"

additionalInfo

Mandatory

String

Additional information given with the reason

Example – "Account Closed"


curl --location '{{URL}}/rtp/rpc/TransactionService/RequestForPaymentResponse' \
--header 'Content-Type: application/json' \
--data '{"processor":"TCH","referenceNumber":"M20240319111112222T1BTST62015255801 ","status":"RJCT","reason":{"code":"AC06","additionalInfo":"Something"}}'

Request Body for FedNow


//Status - Presented
{
"referenceNumber": "20240328011002725axj5LnqYiPkISNM",
"status": "PRES",
"processor": "FEDNOW"
}
//Status - Accepted
{
"referenceNumber": "20230823267084131Gqc04K4L6duVXrw",
"status": "ACTC"
}
//Status - Rejected
{
"referenceNumber": "20230806101110802lecugQb6Se4IdaJ",
"status": "RJCT",
"reason": {
"code": "AC02"
}
}
//If RFP_IN has 'Change of Payment Allowed' option enabled, the requested amount can be changed and accepted
{
"acceptedAmount": {
"amount": 1500,
"currency": "USD"
},
"referenceNumber": "20230823267084131Rt8aAvv4ElXYgwm",
"status": "ACTC"
}

Request Body for TCH


{
"processor": "TCH",
"referenceNumber": "M20240319111112222T1BTST62015255801 ",
"status": "RJCT",
"reason": {
"code": "AC06",
"additionalInfo": "Account Closed"
}
}

Response: 200

Response Parameters
ParameterDescription

response

String

Response received for the given request

Example – "JSON Representation of Received Response"

message

String

Notification message for the request

Example – "request submitted successfully"

rawMessage

String

Raw response message related to the transaction encoded in Base64

Example – "Base64 Value of Received Response"

status

String

Status of the response

Example – "RCVD"

Response Body (Applicable for both FedNow and TCH)


{
"response": "JSON Representation of Received Response",
"message": "request submitted successfully",
"rawMessage": "Base64 Value of Received Response",
"status": "RCVD"
}