Transaction Status Enquiry
A transaction status enquiry checks whether a transaction was successful or failed.
Method POSTURL
https://xxx.finexusgroup.com/fnx-fintech/xxx/mqpos-host/thirdparty/transactionDetailsEnquiry
- Request Parameters
- Response Parameters
Mandatory Fields
Field Name | Type | Length | Description | Example |
---|---|---|---|---|
Email | String | 100 | User input email address. | "ali@email.com" |
TxnID | String | 50 | Unique transaction ID assigned by caller application. | "2021061414062020000" |
sourceSystem | String | 3 | Channel/Source Name. | "mxx" |
sequenceNo | String | 16 | A running message sequence number which unique within system on a calendar day and shall restart from 1 every day. | "202209151126218" |
signedMessage | String | 2048 | The signature value is generated from other fields, then signed by RSA private key. Please refer to Appendix 1. | "..." |
Mandatory Fields
Field Name | Type | Length | Description | Example |
---|---|---|---|---|
TxnID | String | 50 | Unique transaction ID assigned by caller application. | "2021061414062021072" |
RespCd | String | 2 | Response code. Refer to Appendix 2 for details. | "00" |
RespDesc | String | 256 | Result message that describe response Code in details | "mxx" |
sourceSystem | String | 3 | Channel/Source Name. | "mxx" |
sequenceNo | String | 16 | A running message sequence number which unique within system on a calendar day and shall restart from 1 every day. | "2022091511262180" |
signedMessage | String | 2048 | The signature value is generated from other fileds, then signed by RSA private key. Please refer to Appendix 1. | "..." |
Example Message
- Request
- Response
POST Request
curl -X POST
"https://xxx.finexusgroup.com/fnx-fintech/xxx/mqpos-host/thirdparty/transactionDetailsEnquiry" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
Email: "ali@test.com"
TxnID:"2021061414062021072"
sourceSystem:"mxx"
sequenceNo:"2022091511262180"
signedMessage:""
}'
POST Response
{
"TxnID":"2021061414062020000",
"RespCd":"00",
"RespDesc":"mxx",
"sourceSystem":"mxx",
"sequenceNo":"2022091511262180",
"signedMessage":"..."
}