Payment Information
Returns payment information by its identifier.
Request Endpoint
POST
/payin/getRequest Body
| Name | Type | Required | Description |
|---|---|---|---|
id | integer | Optional | Payment ID in our system |
uid | string | Optional | Unique payment identifier |
Requirement
At least one of the following fields must be provided: id or uid
Response Body
| Name | Type | Description |
|---|---|---|
status | boolean | Request processing result |
msg | string | Error description or empty string |
data | object | Payment data object |
data.id | integer | Payment ID in our system |
data.uid | string | Unique payment identifier |
data.order_id | string | Payment ID in your system |
data.amount | number | Payment amount |
data.currency | string | Payment currency |
data.status | string | Current payment status |
Response Example
json
{
"status": true,
"msg": "",
"data": {
"id": 123,
"uid": "01KBCWM19JEQW53ZR1GKYQ6MN7",
"order_id": "123",
"amount": 10.00,
"currency": "USD",
"status": "new"
}
}