ApiResourcesStore settings

Retrieve store settings

Read the current store configuration and status flags without exposing configured secrets.

GET
/v2/store/settings

Authorization

bearerAuth storeAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

X-STORE<token>

Select the SellApp store for this API request.

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://sell.app/api/v2/store/settings"
{
  "data": {
    "id": 0,
    "name": "string",
    "slug": "string",
    "visibility": "PUBLIC",
    "timezone": "string",
    "currency": "str",
    "dark_mode": "light",
    "status": {
      "accessible": true,
      "verified": true,
      "locked": true
    },
    "analytics": {
      "ga4_measurement_id": "string",
      "meta_pixel_id": "string",
      "tiktok_pixel_id": "string",
      "ga4_api_secret_configured": true,
      "meta_access_token_configured": true,
      "tiktok_access_token_configured": true
    },
    "marketing": {
      "abandoned_cart": {}
    }
  }
}
{
  "message": "Unauthenticated."
}
{
  "message": "This action is unauthorized."
}
{
  "message": "The given data was invalid.",
  "errors": {
    "data": [
      "The data field is required."
    ]
  }
}