Skip to main content
Version: 1.0.2

Get Payment Status

The GetPaymentStatus API enables to request for getting the status of both inbound and outbound transactions.

Method: POST

{{URL}}/rtp/rpc/TransactionService/GetPaymentStatus

Headers

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

Example

Payload Parameters
ParameterDescription

referenceNumber

Mandatory

String

Reference number of inbound transaction

Example – "M202311099876665149078836447"

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/GetPaymentStatus' \
--header 'Content-Type: application/json' \
--data '{"referenceNumber":"M202311099876665149078836447","processor":"TCH"}'

Request Body (Applicable for both FedNow and TCH)


{
"referenceNumber": "M202311099876665149078836447",
"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 transaction

Example – "Successfully"

transactionID

(Applicable only for TCH)

String

Unique ID generated for the transaction

Example – "20240319026013673T1BQCQ051004275801"

endToEndId

(Applicable only for TCH)

String

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

Example – "M202311099876665149078836447"

instructingId

(Applicable only for TCH)

String

Payment reference ID of the transaction

Example – "20240319026013673T1BQCQ051004275801"

messageId

(Applicable only for TCH)

String

Unique message ID generated for the transaction

Example – "M20240328026013673T1BF1500306903611"

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

acceptedDate

(Applicable only for TCH)

String

Date and time of the transaction was processed

Example – "2024-03-28T09:02:40"

settlementDate

(Applicable only for TCH)

String

Date and time of the transaction was completed

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

windowId

(Applicable only for TCH)

String

Unique ID used for reconciliation of transactions

Example – "001"

Response Body (Applicable for both FedNow and TCH)


{
"response": "JSON Representation of Received Response",
"message": "Successfully",
"transactionID": "20240319026013673T1BQCQ051004275801", //applicable only for TCH
"endToEndId": "M202311099876665149078836447", //applicable only for TCH
"instructingId": "20240319026013673T1BQCQ051004275801", //applicable only for TCH
"messageId": "M20240328026013673T1BF1500306903611", //applicable only for TCH
"rawMessage": "Base64 Value of Received Response",
"status": "ACTC",
"acceptedDate": "2024-03-28T09:02:40", //applicable only for TCH
"settlementDate": "2024-03-19T00:00:00Z", //applicable only for TCH
"windowId": "001" //applicable only for TCH
}