GetSubscriptionPayment
Retrieves a single subscription payment record by its transaction ID.
Request
GET /nxt?requestType=getSubscriptionPayment
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
paymentId | string | Payment transaction ID (unsigned long) | Yes |
Response
{
"payment": "1234567890123456789",
"service": "9876543210123456789",
"subscriber": "1234567890123456789",
"subscriberRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"provider": "9876543210123456789",
"providerRS": "SHAMWARI-WXYZ-ABCD-EFGH-IJKLM",
"plan": "Basic",
"amountQNT": "100000000",
"timestamp": 1700000000,
"errorCode": 0,
"errorDescription": ""
}
Example
curl "http://localhost:22024/nxt?requestType=getSubscriptionPayment&paymentId=1234567890123456789"