Skip to main content
GET
/
shops
/
{shopId}
/
brand
Get shop brand
curl --request GET \
  --url https://store.salesive.com/api/v1/shops/{shopId}/brand \
  --header 'Authorization: Bearer <token>' \
  --header 'x-shop-id: <api-key>'

Request

GET /shops/68b8f52575da81b332af29f1/brand

Path parameters

ParameterTypeRequiredDescription
shopIdstringYesShop identifier.
This endpoint does not require authentication. It’s used for displaying shop branding on public pages.

Successful response

{
    "status": 200,
    "success": true,
    "message": "Brand information retrieved",
    "data": {
        "name": "Salesive Store",
        "logo": "https://cdn.salesive.com/shops/logo.png",
        "favicon": "https://cdn.salesive.com/shops/favicon.ico",
        "primaryColor": "#0d65d9"
    }
}

Error response

{
    "status": 404,
    "success": false,
    "message": "Shop not found",
    "data": {}
}

Authorizations

Authorization
string
header
required

JWT issued by the Salesive Store API for authenticated shoppers.

x-shop-id
string
header
required

Optional storefront identifier sent as a header to scope responses to a specific shop. Try It requests remember this value once provided.

Path Parameters

shopId
string
required

Response

200

Brand information retrieved