Thanks for being patient while we implement your feedback to improve the developer experience.

Get Store Logo Settings

GET /settings/logo

Request

Returns store logo settings.

  • Channel ID can be used as a query parameter for getting channel-specific setting. If omitted, you will interact with the global setting only.

  • null indicates that a particular field has not been overridden on a channel level when channel level settings are requested and values are inherited from global level.

Authentication

  • X-Auth-Token in header - required

Parameters

  • store_hash in path - string
  • channel_id in query - integer

    Channel ID to use for channel-specific setting. If omitted, you will interact with the global setting only.

example

curl --request GET \ --url 'https://api.bigcommerce.com/stores/[store_hash]/v3/settings/logo' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --header 'X-Auth-Token: xxxxxxxxxxxxxxxxx'

Response

OK, null indicates that a particular field has not been overridden on a channel level when channel level settings are requested

Body

object | application/json
  • data
    object

  • meta
    object

    Response metadata.

example

{ "data": { "favicon_url": "string", "logo_image_url": "string", "logo_text": "string", "type": "image" }, "meta": {} }

Update Store Logo Settings

PUT /settings/logo

Request

Updates the logo type and logo text for a textual logo. To upload new images, use the dedicated image POST endpoints.

  • Channel ID can be used as a query parameter for updating channel-specific setting. If omitted, you will interact with the global setting only.

  • null should be supplied to delete overrides per given channel and to inherit values from global level. Partial updates are not supported and all settings should be supplied with null value in order to delete overrides per channel.

Authentication

  • X-Auth-Token in header - required

Parameters

  • store_hash in path - string
  • channel_id in query - integer

    Channel ID to use for channel-specific setting. If omitted, you will interact with the global setting only.

Body

object | application/json
  • logo_text
    string

  • type
    string

    Allowed: image | text

example

{ "logo_text": "string", "type": "image" }

Response

OK

Body

object | application/json
  • data
    object

  • meta
    object

    Response metadata.

example

{ "data": { "favicon_url": "string", "logo_image_url": "string", "logo_text": "string", "type": "image" }, "meta": {} }