Skip to main content
Version: 1.0.2

Get Payment Status against RFP

The GetRequestForPaymentStatus API enables to get the status of both inbound and outbound payment requests.

Method: POST

{{URL}}/rtp/rpc/TransactionService/GetRequestForPaymentStatus

Headers

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

Example

Payload Parameters
ParameterDescription

referenceNumber

Mandatory

String

Reference number of inbound transaction

Example – "M20231109918765022218"

fedNow

Mandatory

(Applicable only for TCH)

Boolean

Fetching status from FedNow service or from Receiver Financial Institution

true – from FedNow service

false – from Receiver Financial Institution

Example – false

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "TCH" or "FedNow"


curl --location '{{URL}}/rtp/rpc/TransactionService/GetRequestForPaymentStatus' \
--header 'Content-Type: application/json' \
--data '{"referenceNumber":"M20231109918765022218","processor":"TCH"}'

Request Body (Applicable for both FedNow and TCH)


{

"referenceNumber": "M20231109918765022218",
"fednow": false, //applicable only for FedNow
"processor": "TCH"
}

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 – "Successfully"

transactionID

(Applicable only for TCH)

String

Unique ID generated for the transaction

Example – "20240319026013673T1BCGAP80334945801"

endToEndId

(Applicable only for TCH)

String

ID that enables to trace the transaction at any time during the process

Example – "M20231109918765022218"

instructingId

(Applicable only for TCH)

String

Payment reference ID of the transaction

Example – "20240319026013673T1BCGAP80334945801"

messageId

(Applicable only for TCH)

String

Unique message ID generated for the transaction

Example – "M20240328026013673T1BQ2S71542113611"

rawMessage

String

Raw response message related to the transaction encoded in Base64

Example – "Base64 Value of Received Response"

status

String

Current status of the transaction

Example – "RCVD"

acceptedDate

(Applicable only for TCH)

String

Date and time of the transaction was processed

Example – "2024-03-28T09:05:24"

settlementDate

(Applicable only for TCH)

String

Date and time of the transaction was completed

Example – "2024-03-19T00:00:00Z"

Response Body (Applicable for both FedNow and TCH)


{
"response": "JSON Representation of Received Response",
"message": "Successfully",
"transactionID": "20240319026013673T1BCGAP80334945801", //applicable only for TCH
"endToEndId": "M20231109918765022218", //applicable only for TCH
"instructingId": "20240319026013673T1BCGAP80334945801", //applicable only for TCH
"messageId": "M20240328026013673T1BQ2S71542113611", //applicable only for TCH
"rawMessage": "Base64 Value of Received Response",
"status": "RCVD",
"acceptedDate": "2024-03-28T09:05:24", //applicable only for TCH
"settlementDate": "2024-03-19T00:00:00Z" //applicable only for TCH
}