定期課金: Get
このリクエストでは、アプリトークン・シークレット・定期課金IDを指定することで、特定の定期課金についての情報を取得することができます。
Request
GET https://api.univapay.com/stores/{storeId}/subscriptions/{subscriptionId}
Parameters:
Parameters | |
polling | boolean ステータスが pending (初期ステータス)から別のステータスに変更されるまで、課金のステータスを内部でポーリングするようにAPIに指示します。 |
Headers:
Authorization: Bearer {secret}.{jwt}
Body:
curl --request GET \
--url https://api.univapay.com/stores/37ff5664-18c6-11e7-8221-ff4914d76afc/subscriptions/aaadee6a-18e3-11e7-a461-e3b078a7dc52 \
--header 'Authorization: Bearer {secret}.{jwt}'
Response
Code: 200
Headers:
Content-Type: application/json
Body:
{
"id": "aaadee6a-18e3-11e7-a461-e3b078a7dc52",
"store_id": "37ff5664-18c6-11e7-8221-ff4914d76afc",
"amount": 1250,
"currency": "USD",
"amount_formatted": 12.5,
"period": "daily",
"status": "unverified",
"metadata": {
"ServiceId": 78435694
},
"mode": "test",
"created_on": "2018-07-13T02:55:00.07367Z"
}