下載客戶端,操作更方便!下载

付款

GET https://ja-t.net/api/payments/
curl --request GET \
--url 'https://ja-t.net/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": "example@example.com", "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://ja-t.net/api/payments?&page=1", "last": "https://ja-t.net/api/payments?&page=1", "next": null, "prev": null, "self": "https://ja-t.net/api/payments?&page=1" } }
GET https://ja-t.net/api/payments/{payment_id}
curl --request GET \
--url 'https://ja-t.net/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, "date": "2021-03-25 15:08:58" } }