المدفوعات
GET https://toolkitnow.info/api/payments/
curl --request GET \
--url 'https://toolkitnow.info/api/payments/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://toolkitnow.info/api/payments/' \
--header 'Authorization: Bearer {api_key}' \
المعلمات | تفاصيل | الوصف |
---|---|---|
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": "[email protected]",
"name": null,
"total_amount": "4.99",
"currency": "USD",
"status": true,
"date": "2021-03-25 15:08:58"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://toolkitnow.info/api/payments?&page=1",
"last": "https://toolkitnow.info/api/payments?&page=1",
"next": null,
"prev": null,
"self": "https://toolkitnow.info/api/payments?&page=1"
}
}
GET https://toolkitnow.info/api/payments/{payment_id}
curl --request GET \
--url 'https://toolkitnow.info/api/payments/{payment_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://toolkitnow.info/api/payments/{payment_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"plan_id": 1,
"processor": "stripe",
"type": "one_time",
"frequency": "monthly",
"email": "[email protected]",
"name": null,
"total_amount": "4.99",
"currency": "USD",
"status": true,
"date": "2021-03-25 15:08:58"
}
}