返金 – GET
返金オブジェクトに対するGETリクエストには以下が必要です。(括弧内は入力箇所)
- 店舗ID(URLの
{storeId}
部分) - 課金ID(URLの
{chargeId}
部分) - 返金ID(URLの
{id}
部分) - シークレット(Headerの
{secret}
部分) - アプリトークン(Headerの
{jwt}
部分)
リクエスト
CommandとHeader
curl --request GET \
--url https://api.univapay.com/stores/{storeId}/charges/{chargeId}/refunds/{id} \
--header 'Authorization: Bearer {secret}.{jwt}'
利用できるパラメータ
リクエストURLに追加できるクエリパラメータは以下です。
フィールド名 | データ型 | 備考 |
---|---|---|
polling | boolean | ステータスが pending (初期ステータス)から別のステータスに変更されるまで、課金のステータスを内部でポーリングするようにAPIに指示する |
記述例
curl --request GET \
--url https://api.univapay.com/stores/11edf541-c42d-653c-8c3d-dfe0a55f95c0/charges/11ef32c3-3cfe-3bc0-abed-0bb96f792078/refunds/11ef32c8-c721-823a-ba45-77212da778fa \
--header 'Authorization: Bearer {secret}.{jwt}'
レスポンス
下記は記述例でリクエストした場合の例です。
CodeとHeader
- Code:
200
- Header:
Content-Type: application/json
Body
{
"id": "11ef32c8-c721-823a-ba45-77212da778fa",
"store_id": "11edf541-c42d-653c-8c3d-dfe0a55f95c0",
"charge_id": "11ef32c3-3cfe-3bc0-abed-0bb96f792078",
"status": "successful",
"amount": 250,
"currency": "JPY",
"amount_formatted": 250,
"reason": "customer_request",
"message": "15 percent off",
"error": null,
"metadata": {
"coupon": "VIP007"
},
"mode": "test",
"created_on": "2024-06-25T07:58:58.748326Z"
}