HomeGuidesAPI ReferenceChangelogDiscussions
HomeLog In
Guides

Get Checkout Setting

Function

To retrieve the checkout settings
獲取結帳設定

URL

GET https://open.shopline.io/v1/settings/checkout

Request Example

curl --request GET \
     --url https://open.shopline.io/v1/settings/checkout \
     --header 'Accept: application/json'

Response Example

FieldTypeDescriptionExample
enable_fast_checkout_qtyBooleanfalse
enable_tc_location_redesignBooleanfalse
enable_ec_fast_checkoutBooleanfalse
enable_sc_fast_checkoutBooleanfalse
checkout_without_customer_nameBooleanfalse
enforce_user_login_on_checkoutBooleanfalse
checkout_without_emailBooleanfalse
enabled_abandoned_cart_notificationBooleanfalse
rounding_settingObject
rounding_setting.enabledBooleanfalse
rounding_setting.smallest_denominationInteger1
rounding_setting.rounding_modeString'round_half_even'
{
    "enable_fast_checkout_qty": false,
    "enable_tc_location_redesign": false,
    "enable_ec_fast_checkout": false,
    "enable_sc_fast_checkout": false,
    "checkout_without_customer_name": false,
    "enforce_user_login_on_checkout": false,
    "checkout_without_email": false,
    "enabled_abandoned_cart_notification": false,
    "rounding_setting": {
        "enabled": false,
        "rounding_mode": "round_half_even",
        "smallest_denomination": 10
    }
}