खाता भुगतान
GET https://kodx.uk/api/payments/
curl --request GET \
--url 'https://kodx.uk/api/payments/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://kodx.uk/api/payments/' \
--header 'Authorization: Bearer {api_key}' \
पैरामीटर | विवरण | Kodx.uk — डेवलपर्स और उपयोगकर्ताओं के लिए शक्तिशाली ऑनलाइन टूल का संग्रह। आपके कार्यप्रवाह को सरल बनाने के लिए कन्वर्टर्स, जनरेटर और उपयोगिताएँ। इसे मुफ्त में आजमाएँ! |
---|---|---|
page | वैकल्पिक पूर्णांक | आप जिस पृष्ठ संख्या से परिणाम चाहते हैं। डिफ़ॉल्ट रूप से 1 । |
results_per_page | वैकल्पिक पूर्णांक | आप प्रति पृष्ठ कितने परिणाम चाहते हैं। अनुमत मान हैं: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . डिफ़ॉल्ट है 25 . |
{
"data": [
{
"id": 1,
"plan_id": 1,
"processor": "stripe",
"type": "one_time",
"frequency": "monthly",
"email": "example@example.com",
"name": null,
"total_amount": "4.99",
"currency": "USD",
"status": true,
"datetime": 2025-03-14 18:56:26 },
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://kodx.uk/api/payments?&page=1",
"last": "https://kodx.uk/api/payments?&page=1",
"next": null,
"prev": null,
"self": "https://kodx.uk/api/payments?&page=1"
}
}
GET https://kodx.uk/api/payments/{payment_id}
curl --request GET \
--url 'https://kodx.uk/api/payments/{payment_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://kodx.uk/api/payments/{payment_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"plan_id": 1,
"processor": "stripe",
"type": "one_time",
"frequency": "monthly",
"email": "example@example.com",
"name": null,
"total_amount": "4.99",
"currency": "USD",
"status": true,
"datetime": 2025-03-14 18:56:26 }
}