Overview of the Pay by Link APIs response.
Create Payment Link API
Shown below is a sample response returned in our Create Payment Link API.
{
"RESPONSE_CODE": 1,
"RESPONSE_MESSAGE": "SUCCESS",
"PAYMENT_URL": "https://pyn.onl/PLUTUS/m81hnc1",
"PAYMENT_LINK_ID": 5275034
}
The table below lists the various parameters returned in the Create Payment Link API.
Parameter | Type | Description |
---|---|---|
RESPONSE_CODE | integer | The Response Code of the API request. Possible value:
|
RESPONSE_MESSAGE | string | Message corresponding to the response code. Example: SUCCESS |
PAYMENT_URL | string | Plural Payment URL. Navigate your customers to this URL to do the payment. Example: https://pyn.onl/PLUTUS/m81hnc1 |
PAYMENT_LINK_ID | Int64 | Payment ID which comes in response parameter of create payment link API |
Resend Payment Link API
Shown below is a sample response returned in our Resend Payment Link API.
{
"RESPONSE_CODE": 1,
"RESPONSE_MESSAGE": "SUCCESS"
}
The table below lists the various parameters returned in the Resend Payment Link API.
Parameter | Type | Description |
---|---|---|
RESPONSE_CODE | integer | The Response Code of the API request. Possible value:
|
RESPONSE_MESSAGE | string | Message corresponding to the response code. Example: SUCCESS |
Get Payment Status API
Shown below is a sample response returned in our Get Payment Status API.
{
"RESPONSE_CODE": 1,
"RESPONSE_MESSAGE": "SUCCESS",
"PAYMENT_MODE": 3,
"PINE_PG_TRANSACTION_ID": 14619963,
"ACQUIRER_NAME": "BILLDESK",
"REFERENCE_NO": "0123",
"AMOUNT": 50000,
"TXN_STATUS": "7",
"REFUND_AMOUNT": "0",
"PARENT_TXN_STATUS": "4",
"ACQUIRER_RESPONSE_CODE": "0300",
"ACQUIRER_RESPONSE_MESSAGE": "DEFAULT"
}
The table below lists the various parameters returned in the Get Payment Status API.
Parameter | Type | Description |
---|---|---|
RESPONSE_CODE | integer | The Response Code of the API request. Possible value:
|
RESPONSE_MESSAGE | string | Message corresponding to the response code. Example: SUCCESS |
PAYMENT_MODE | string | The payment mode you prefer to accept payment. Accepted values:
|
PINE_PG_TRANSACTION_ID | string | Unique transaction ID generated by Plural against an Order ID. Example: 12345678 |
ACQUIRER_NAME | string | The acquirer's name for this transaction. Example: BILLDESK |
REFERENCE_NO | string | Reference number of merchant which is maintained by pine labs. (Max length is 100) Example: ABCDEFG |
AMOUNT | Int64 | Amount in Paisa.
1100 |
TXN_STATUS | string | The status of the transaction. Note: Please refer to the Pine PG transaction status table to know the status. |
REFUND_AMOUNT | Int64 | The total amount refunded. Example: 0 |
PARENT_TXN_STATUS | integer | The status code of the purchase transaction. Example: 4 |
ACQUIRER_RESPONSE_CODE | string | The response code received from the acquirer. Example: 1234 |
ACQUIRER_RESPONSE_MESSAGE | string | Message corresponding to the acquirer code. Example: DEFAULT |