店舗 – GET
店舗オブジェクトに対するGETリクエストには以下が必要です。(括弧内は入力箇所)
- 店舗ID(URLの
{storeId}
部分) - シークレット(Headerの
{secret}
部分) - アプリトークン(Headerの
{jwt}
部分)
リクエスト
CommandとHeader
curl --request GET \
--url https://api.univapay.com/stores/{storeId} \
--header 'Authorization: Bearer {secret}.{jwt}'
記述例
curl --request GET \
--url https://api.univapay.com/stores/11edf541-c42d-653c-8c3d-dfe0a55f95c0 \
--header 'Authorization: Bearer {secret}.{jwt}'
レスポンス
下記は記述例でリクエストした場合の例です。
CodeとHeader
- Code:
200
- Header:
Content-Type: application/json
Body
{
"id": "11edf541-c42d-653c-8c3d-dfe0a55f95c0",
"name": "管理画面ガイド_TEST店舗",
"created_on": "2023-05-18T06:03:53.125782Z",
"configuration": {
"percent_fee": null,
"flat_fees": null,
"logo_url": null,
"country": null,
"language": null,
"display_time_zone": null,
"min_transfer_payout": null,
"minimum_charge_amounts": null,
"maximum_charge_amounts": null,
"user_transactions_configuration": {
"enabled": null,
"notify_customer": null,
"notify_on_test": null,
"notify_on_recurring_token_creation": null,
"notify_on_recurring_token_cvv_failed": null,
"notify_on_webhook_failure": null,
"notify_on_webhook_disabled": null,
"notify_user_on_failed_transactions": null,
"notify_customer_on_failed_transactions": null,
"notify_user_on_convenience_instructions": null,
"notify_on_subscriptions": null,
"notify_on_authorizations": null,
"notify_on_cvv_authorizations": null,
"notify_on_cancels": null,
"customer_refer_link_enabled": null,
"notify_on_convenience_expiry": null
},
"recurring_token_configuration": {
"recurring_type": null,
"charge_wait_period": null,
"card_charge_cvv_confirmation": {
"enabled": null,
"threshold": null
}
},
"security_configuration": {
"card_charge_cooldown": null,
"subscription_cooldown": null,
"idempotent_card_charge_cooldown": null,
"idempotent_subscription_cooldown": null,
"restrict_ip_after_failed_charge": {
"enabled": null,
"count": null,
"cooldown": null
},
"inspect_suspicious_login_after": null,
"refund_percent_limit": null,
"limit_charge_by_card_configuration": null,
"confirmation_required": null,
"min_refund_threshold": null,
"limit_refund_by_sales": null
},
"checkout_configuration": {
"ec_email": {},
"ec_products": {}
},
"installments_configuration": {
"enabled": null,
"card_processor": {
"revolving": null,
"fixed_cycle": null
},
"supported_payment_types": null,
"min_charge_amount": null,
"max_payout_period": null,
"only_with_processor": true
},
"subscription_plan_configuration": {
"enabled": null,
"fixed_cycle": null,
"fixed_cycle_amount": null,
"supported_payment_types": null,
"min_charge_amount": null,
"max_payout_period": null
},
"card_brand_percent_fees": {
"visa": null,
"american_express": null,
"mastercard": null,
"maestro": null,
"discover": null,
"jcb": null,
"diners_club": null,
"union_pay": null,
"private_label": null
},
"subscription_configuration": {
"enabled": null,
"failed_charges_to_cancel": null,
"suspend_on_cancel": null,
"allow_merchant_amount_patch": null,
"allow_merchant_due_date_patch": null
},
"customer_management_configuration": {
"enabled": null,
"default_roles": null,
"default_mode": null
},
"descriptor_provided_configuration": null,
"card_configuration": {
"enabled": null,
"debit_enabled": null,
"prepaid_enabled": null,
"debit_authorization_enabled": null,
"prepaid_authorization_enabled": null,
"forbidden_card_brands": null,
"allowed_countries_by_ip": null,
"foreign_cards_allowed": null,
"fail_on_new_email": null,
"card_limit": null,
"allow_empty_cvv": false,
"only_direct_currency": null,
"three_ds_required": null,
"three_ds_address_required": null,
"allow_direct_token_creation": null
},
"qr_scan_configuration": {
"enabled": null,
"forbidden_qr_scan_gateways": null
},
"convenience_configuration": {
"expiration_time_shift": {}
},
"paidy_configuration": {
"enabled": null
},
"qr_merchant_configuration": {
"enabled": null
},
"online_configuration": {},
"bank_transfer_configuration": {
"expiration_time_shift": {}
},
"platform_credentials_enabled": null,
"tagged_platform_credentials_enabled": null
},
"tms_store_data": null
}