Get information about the Brand (public)

GET /brand

Headers

  • X-Popsell-Domain string Required

    The domain of the user

Responses

  • 200 application/json

    Returns the Brand information

    Hide response attributes Show response attributes object
    • id_brand integer
    • label string
    • default_language string
    • url string
    • program_label string
    • front_office_domain string
    • register_restriction string
    • product_price_display_limit integer
    • widget_wl_cta_chat_topic integer
    • widget_community_default_sort_amb_by integer
    • brand_config object

      Additional properties are allowed.

    • available_content_language array[string]
    • timezone string
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
GET /brand
curl \
 --request GET 'https://domain.tld/api/v2/brand' \
 --header "X-Popsell-Domain: example.com"
Response examples (200)
{
  "id_brand": 42,
  "label": "string",
  "default_language": "fr_FR",
  "url": "https://domain.tld",
  "program_label": "Program Label",
  "front_office_domain": "https://domain.tld",
  "register_restriction": "MANUALLY",
  "product_price_display_limit": 42,
  "widget_wl_cta_chat_topic": 42,
  "widget_community_default_sort_amb_by": 42,
  "brand_config": {},
  "available_content_language": [
    "fr_FR",
    "en_GB",
    "de_DE",
    "es_ES"
  ],
  "timezone": "Europe/Paris"
}
Response examples (401)
{
  "message": "Unauthorized."
}