支払い – LIST
定期課金オブジェクトに対する支払いLISTリクエストには以下が必要です。(括弧内は入力箇所)
- 店舗ID(URLの
{storeId}
部分) - 定期課金ID(URLの
{subscriptionId}
部分) - シークレット(Headerの
{secret}
部分) - アプリトークン(Headerの
{jwt}
部分)
リクエスト
CommandとHeader
curl --request GET \
--url https://api.univapay.com/stores/{storeId}/subscriptions/{subscriptionId}/payments \
--header 'Authorization: Bearer {secret}.{jwt}'
記述例
curl --request GET \
--url https://api.univapay.com/stores/37ff5664-18c6-11e7-8221-ff4914d76afc/subscriptions/aaadee6a-18e3-11e7-a461-e3b078a7dc52/payments \
--header 'Authorization: Bearer {secret}.{jwt}'
レスポンス
下記は記述例でリクエストした場合の例です。
CodeとHeader
- Code:
200
- Header:
Content-Type: application/json
Body
{
"items": [
{
"id": "11e89a0a-8cee-d660-b984-3fcaaed46e7c",
"due_date": "2018-08-21",
"zone_id": "Asia/Tokyo",
"amount": 10000,
"currency": "JPY",
"amount_formatted": 10000,
"is_paid": false,
"is_last_payment": false,
"created_on": "2018-08-07T06:24:33.961256Z",
"updated_on": "2018-08-07T06:24:33.961256Z"
},
{
"id": "11e89a0a-8cc5-2662-9460-2b14b1a601ba",
"due_date": "2018-08-07",
"zone_id": "Asia/Tokyo",
"amount": 1000,
"currency": "JPY",
"amount_formatted": 1000,
"is_paid": true,
"is_last_payment": false,
"created_on": "2018-08-07T06:24:33.646223Z",
"updated_on": "2018-08-07T06:24:33.88776Z"
}
],
"has_more": false
}