Shop Data Type

A shop (storefront) belonging to an account. Contains configuration for the store name, currency, VAT, creator theme, and e-commerce platform connections.

Available Since
1.3.0
Properties
Name Type Description
id number Unique numeric identifier for the Shop.
name string The name of the Shop.
type ShopType Role of this shop within the account. Possible values: SHOP (default sales channel), CORE (shared product and motive library), PUBLISH, SUBPARTNER_SAMPLE, SUBPARTNER_LIBRARY.
default boolean Whether this is the default shop for the account.
Used in
Shop (JSON)
{
  "shop" : {
    "id" : 12345,
    "name" : "...",
    "type" : "SHOP",
    "default" : true
  }
}
Shop Data Type

A shop (storefront) belonging to an account. Contains configuration for the store name, currency, VAT, creator theme, and e-commerce platform connections.

Available Since
1.3.0
Properties
Name Type Description
default boolean Whether this is the default shop for the account.
id int Unique numeric identifier for the Shop.
name string The name of the Shop.
type ShopType Role of this shop within the account. Possible values: SHOP (default sales channel), CORE (shared product and motive library), PUBLISH, SUBPARTNER_SAMPLE, SUBPARTNER_LIBRARY.
Used in
Shop (XML)
<shop>
  <id>...</id>
  <name>...</name>
  <type>...</type>
  <default>...</default>
</shop>