FCHubFCHub.co

Get store settings

Retrieve store configuration settings including currency, address, checkout options, and page assignments.

GET
/settings/store

Authorization

applicationPassword
AuthorizationBasic <token>

WordPress Application Password authentication. Generate one at wp-admin > Users > Application Passwords. Use as Basic Auth with username:application_password (base64-encoded).

In: header

Query Parameters

settings_name?string

Retrieve a specific settings group by name

Response Body

application/json

curl -X GET "https://your-site.com/wp-json/fluent-cart/v2/settings/store"
{
  "settings": {
    "store_name": "string",
    "currency": "string",
    "currency_position": "before",
    "decimal_separator": "string",
    "checkout_button_text": "string",
    "view_cart_button_text": "string",
    "cart_button_text": "string",
    "popup_button_text": "string",
    "out_of_stock_button_text": "string",
    "checkout_method_style": "string",
    "enable_modal_checkout": "yes",
    "require_logged_in": "yes",
    "show_cart_icon_in_nav": "yes",
    "show_cart_icon_in_body": "yes",
    "additional_address_field": "yes",
    "hide_coupon_field": "yes",
    "user_account_creation_mode": "string",
    "checkout_page_id": 0,
    "cart_page_id": 0,
    "receipt_page_id": 0,
    "shop_page_id": 0,
    "customer_profile_page_id": 0,
    "customer_profile_page_slug": "string",
    "store_address1": "string",
    "store_address2": "string",
    "store_city": "string",
    "store_country": "string",
    "store_postcode": "string",
    "store_state": "string",
    "order_mode": "test",
    "variation_view": "string",
    "variation_columns": "string",
    "min_receipt_number": "string",
    "inv_prefix": "string",
    "store_logo": "string"
  },
  "fields": {}
}