加盟店 – GET
加盟店オブジェクトに対するGETリクエストには以下が必要です。(括弧内は入力箇所)
- シークレット(Headerの
{secret}
部分) - アプリトークン(Headerの
{jwt}
部分)
リクエスト
CommandとHeader
curl --request GET \
--url https://api.univapay.com/me \
--header 'Authorization: Bearer {secret}.{jwt}'
記述例
curl --request GET \
--url http://api.univapay.com/me \
--header 'Authorization: Bearer {secret}.{jwt}'
レスポンス
下記は記述例でリクエストした場合の例です。
CodeとHeader
- Code:
200
- Header:
Content-Type: application/json
Body
{
"id": "11edf541-548f-ad70-8bc2-d34ca468c664",
"verification_data_id": "11edf541-54f3-2a58-9afe-b372c6f5fc0a",
"name": "管理画面ガイド",
"email": "merchant@test.com",
"notification_email": "merchant@test.com",
"verified": true,
"created_on": "2023-05-18T06:00:45.870218Z",
"configuration": {
"percent_fee": 3.400,
"flat_fees": [
{
"amount": 30,
"amount_formatted": 30,
"currency": "JPY"
}
],
"logo_url": null,
"country": null,
"language": null,
"display_time_zone": null,
"min_transfer_payout": null,
"minimum_charge_amounts": null,
"maximum_charge_amounts": null,
"transfer_schedule": {
"wait_period": "P7D",
"period": "monthly",
"full_period_required": null,
"day_of_week": null,
"week_of_month": null,
"day_of_month": null,
"weekly_closing_day": null,
"weekly_payout_day": null
},
"user_transactions_configuration": {
"enabled": true,
"notify_customer": true,
"notify_on_test": true,
"notify_on_recurring_token_creation": true,
"notify_on_recurring_token_cvv_failed": true,
"notify_on_webhook_failure": true,
"notify_on_webhook_disabled": true,
"notify_user_on_failed_transactions": true,
"notify_customer_on_failed_transactions": true,
"notify_user_on_convenience_instructions": null,
"notify_on_subscriptions": true,
"notify_on_authorizations": true,
"notify_on_cvv_authorizations": false,
"notify_on_cancels": true,
"customer_refer_link_enabled": true,
"notify_on_convenience_expiry": true
},
"recurring_token_configuration": {
"recurring_type": "infinite",
"charge_wait_period": "PT20S",
"card_charge_cvv_confirmation": {
"enabled": true,
"threshold": [
{
"amount": 10000,
"amount_formatted": 10000,
"currency": "JPY"
}
]
}
},
"security_configuration": {
"card_charge_cooldown": null,
"subscription_cooldown": null,
"idempotent_card_charge_cooldown": null,
"idempotent_subscription_cooldown": null,
"restrict_ip_after_failed_charge": {
"enabled": true,
"count": null,
"cooldown": null
},
"inspect_suspicious_login_after": "P20D",
"refund_percent_limit": null,
"limit_charge_by_card_configuration": null,
"confirmation_required": null,
"min_refund_threshold": 5,
"limit_refund_by_sales": {
"enabled": true,
"period": "daily",
"rolling_window": false
}
},
"checkout_configuration": {
"ec_email": {
"enabled": true
},
"ec_products": {
"enabled": true
}
},
"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": 3.300,
"american_express": 3.500,
"mastercard": 3.300,
"maestro": null,
"discover": null,
"jcb": 3.500,
"diners_club": 3.300,
"union_pay": null,
"private_label": null
},
"subscription_configuration": {
"enabled": null,
"failed_charges_to_cancel": null,
"suspend_on_cancel": null,
"allow_merchant_amount_patch": true,
"allow_merchant_due_date_patch": true
},
"customer_management_configuration": {
"enabled": true,
"default_roles": null,
"default_mode": null
},
"descriptor_provided_configuration": null,
"card_configuration": {
"enabled": null,
"debit_enabled": true,
"prepaid_enabled": true,
"debit_authorization_enabled": null,
"prepaid_authorization_enabled": null,
"forbidden_card_brands": null,
"allowed_countries_by_ip": null,
"foreign_cards_allowed": true,
"fail_on_new_email": null,
"card_limit": null,
"allow_empty_cvv": false,
"only_direct_currency": false,
"three_ds_required": null,
"three_ds_address_required": null,
"allow_direct_token_creation": true
},
"qr_scan_configuration": {
"enabled": true,
"forbidden_qr_scan_gateways": null
},
"convenience_configuration": {
"enabled": true,
"expiration_time_shift": {
"value": "13:00:00+09:00",
"enabled": false
}
},
"paidy_configuration": {
"enabled": null
},
"qr_merchant_configuration": {
"enabled": true
},
"online_configuration": {
"enabled": false
},
"bank_transfer_configuration": {
"enabled": true,
"expiration_time_shift": {
"value": "11:00:00+09:00",
"enabled": true
},
"default_extension_period": "PT24H",
"charge_request_notification_enabled": true,
"charge_request_canceled_notification_enabled": true,
"charge_expired_notification_enabled": true,
"deposit_received_notification_enabled": true,
"deposit_insufficient_notification_enabled": true,
"deposit_exceeded_notification_enabled": true,
"extension_notification_enabled": true,
"remind_notification_enabled": true
},
"platform_credentials_enabled": false,
"tagged_platform_credentials_enabled": false
},
"tms_merchant_data": null
}