A Shopping List can be used to implement a "save-for-later" feature for an individual Customer, a shareable wishlist, or a public collection of Products.
250
Line Items and up to 100
Text Line Items.
The maximum number of Shopping Lists that can be added to a Project is 10 000 000
. If your Project contains more Shopping Lists, the oldest unmodified resources are automatically deleted.Representations
ShoppingList
id ​String​ | Unique identifier of the ShoppingList. |
version ​Int​ | Current version of the ShoppingList. |
key ​String​ | User-defined unique identifier of the ShoppingList. MinLength:Â2 ​MaxLength: 256 ​Pattern: ^[A-Za-z0-9_-]+$ ​ |
name ​ | Name of the ShoppingList. |
customer ​ | Reference to a Customer associated with the ShoppingList. |
slug ​ | Human-readable identifiers usually used as deep-link URL to the related ShoppingList.
Each slug is unique across a Project, but a ShoppingList can have the same slug for different languages.
The slug must match the pattern [a-zA-Z0-9_-]{2,256} . For good performance, indexes are provided for the first 15 languages set on the Project. |
description ​ | Description of the ShoppingList. |
lineItems ​Array of ShoppingListLineItem​ | Line Items (containing Products) of the ShoppingList. |
textLineItems ​Array of TextLineItem​ | Line Items (containing text values) of the ShoppingList. |
deleteDaysAfterLastModification ​Int​ | Number of days after which the ShoppingList will be automatically deleted if it has not been modified. |
anonymousId ​String​ | Identifies ShoppingLists belonging to an anonymous session. |
store ​ | Store to which the ShoppingList is assigned. |
businessUnit ​ | |
custom ​CustomFields​ | Custom Fields defined for the ShoppingList. |
createdAt ​DateTime​ | Date and time (UTC) the ShoppingList was initially created. |
createdBy ​BETACreatedBy​ | IDs and references that created the ShoppingList. |
lastModifiedAt ​DateTime​ | Date and time (UTC) the ShoppingList was last updated. |
lastModifiedBy ​BETA | IDs and references that last modified the ShoppingList. |
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
ShoppingListDraft
key ​String​ | User-defined unique identifier for the ShoppingList. MinLength:Â2 ​MaxLength: 256 ​Pattern: ^[A-Za-z0-9_-]+$ ​ |
name ​ | Name of the ShoppingList. |
slug ​ | Human-readable identifiers usually used as deep-link URL to the related ShoppingList.
Each slug is unique across a Project, but a ShoppingList can have the same slug for different languages.
The slug must match the pattern [a-zA-Z0-9_-]{2,256} . |
customer ​ | The Customer the ShoppingList should be associated to. |
description ​ | Description of the ShoppingList. |
anonymousId ​String​ | Identifies ShoppingLists belonging to an anonymous session. |
deleteDaysAfterLastModification ​Int​ | Number of days after which the ShoppingList will be automatically deleted if it has not been modified. If not set, the default value configured in the Project is used. Minimum: 1 ​ |
lineItems ​Array of ShoppingListLineItemDraft​ | Line Items (containing Products) to add to the ShoppingList. |
textLineItems ​Array of TextLineItemDraft​ | Line Items (containing text values) to add to the ShoppingList. |
store ​ | Assigns the new ShoppingList to the Store. |
businessUnit ​ | ResourceIdentifier of the Business Unit the Shopping List should belong to. When the customer of the Shopping List is set, the Customer must be an Associate of the Business Unit. Only available for B2B-enabled Projects. |
custom ​ | Custom Fields defined for the ShoppingList. |
{
"name": {
"en": "My shopping list"
},
"slug": {
"en": "my-shopping-list"
},
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"key": "my-shopping-list",
"deleteDaysAfterLastModification": 100,
"lineItems": [
{
"sku": "product-variant-sku",
"quantity": 5
},
{
"productId": "0e131f46-8d1a-4761-9c83-b45ab5d3501e",
"variantId": 2
}
],
"textLineItems": [
{
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
}
}
ShoppingListPagedQueryResponse
limit ​Int​ | Number of results requested. Default: 20 ​Minimum: 0 ​Maximum: 500 ​ |
count ​Int​ | Actual number of results returned. |
total ​Int​ | Total number of results matching the query.
This number is an estimation that is not strongly consistent.
This field is returned by default.
For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false .
When the results are filtered with a Query Predicate, total is subject to a limit. |
offset ​Int​ | Number of elements skipped. Default: 0 ​Maximum: 10000 ​ |
results ​Array of ShoppingList​ | ShoppingLists matching the query. |
{
"limit": 20,
"offset": 0,
"count": 1,
"total": 1,
"results": [
{
"id": "9693f04b-5aec-467f-baa1-fc74da7d0c3d",
"version": 1,
"name": {
"en": "test"
},
"key": "test",
"lineItems": [],
"textLineItems": [],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"createdAt": "2017-03-30T11:49:40.904Z",
"lastModifiedAt": "2017-03-30T11:49:40.904Z"
}
]
}
ShoppingListReference
id ​String​ | Unique identifier of the referenced ShoppingList. |
typeId ​ | shopping-list Type of referenced resource. |
obj ​ShoppingList​ | Contains the representation of the expanded ShoppingList. Only present in responses to requests with Reference Expansion for ShoppingLists. |
ShoppingListResourceIdentifier
id
or key
is required. If both are set, an InvalidJsonInput error is returned.id ​String​ | Unique identifier of the referenced ShoppingList. Required if key is absent. |
key ​String​ | User-defined unique identifier of the referenced ShoppingList. Required if id is absent. |
typeId ​ | shopping-list Type of referenced resource. If given, it must match the expected ReferenceTypeId of the referenced resource. |
Line Items
ShoppingListLineItem
productSlug
and variant
, defined with the query parameter expand
.id ​String​ | Unique identifier of the ShoppingListLineItem. |
key ​String​ | User-defined identifier of the ShoppingListLineItem. It is unique per ShoppingList. MinLength: 2 ​MaxLength: 256 ​Pattern: ^[a-zA-Z0-9_-] ​ |
addedAt ​DateTime​ | Date and time (UTC) the ShoppingListLineItem was added to the ShoppingList. |
deactivatedAt ​DateTime​ | If the Product or Product Variant is deleted,
deactivatedAt is the date and time (UTC) of deletion.This data is updated in an eventual consistent manner when the Product Variant cannot be ordered anymore. |
name ​ | Name of the Product. This data is updated in an eventual consistent manner when the Product's name changes. |
productId ​String​ | Unique identifier of a Product. |
productType ​ | The Product Type defining the Attributes of the Product. |
quantity ​Int​ | Number of Products in the ShoppingListLineItem. |
variantId ​Int​ | id of the ProductVariant the ShoppingListLineItem refers to. If not set, the ShoppingListLineItem refers to the Master Variant. |
variant ​ | Data of the ProductVariant.
Returned when expanded using expand=lineItems[*].variant . You cannot expand only a single element of the array. |
productSlug ​ | Slug of the current ProductData.
Returned when expanded using expand=lineItems[*].productSlug . You cannot expand only a single element of the array. |
custom ​CustomFields​ | Custom Fields of the ShoppingListLineItem. |
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 3,
"addedAt": "2022-08-22T14:11:03.572Z"
}
ShoppingListLineItemDraft
productID
and variantID
, or by the sku
.key ​String​ | User-defined identifier of the ShoppingListLineItem. Must be unique per ShoppingList. MinLength: 2 ​MaxLength: 256 ​Pattern: ^[a-zA-Z0-9_-] ​ |
productId ​String​ | Unique identifier of a Product. |
variantId ​Int​ | id of the ProductVariant. If not set, the ShoppingListLineItem refers to the Master Variant. |
sku ​String​ | sku of the ProductVariant. |
addedAt ​DateTime​ | Date and time the ShoppingListLineItem is added to the ShoppingList. If not set, the current date and time (UTC) is used. |
quantity ​Int​ | Number of Products in the ShoppingListLineItem. Default:Â1 ​Minimum: 1 ​ |
custom ​ | Custom Fields of the ShoppingListLineItem. |
{
"sku": "product-variant-sku",
"quantity": 3
}
TextLineItem
TextLineItems are Line Items that use text values instead of references to Products.
id ​String​ | Unique identifier of the TextLineItem. |
key ​String​ | User-defined identifier of the TextLineItem. It is unique per ShoppingList. MinLength: 2 ​MaxLength: 256 ​Pattern: ^[a-zA-Z0-9_-] ​ |
addedAt ​DateTime​ | Date and time (UTC) the TextLineItem was added to the ShoppingList. |
description ​ | Description of the TextLineItem. |
name ​ | Name of the TextLineItem. |
quantity ​Int​ | Number of entries in the TextLineItem. |
custom ​CustomFields​ | Custom Fields of the TextLineItem. |
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
TextLineItemDraft
key ​String​ | User-defined unique identifier of the TextLineItem. Must be unique per ShoppingList. MinLength: 2 ​MaxLength: 256 ​Pattern: ^[a-zA-Z0-9_-] ​ |
addedAt ​DateTime​ | Date and time the TextLineItem is added to the ShoppingList. If not set, the current date and time (UTC) is used. |
description ​ | Description of the TextLineItem. |
name ​ | Name of the TextLineItem. |
quantity ​Int​ | Number of entries in the TextLineItem. Default:Â1 ​Minimum: 1 ​ |
custom ​ | Custom Fields for the TextLineItem. |
{
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5
}
Get ShoppingList
Get ShoppingList by ID
view_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
id String ​ | id of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
curl --get https://api.{region}.commercetools.com/{projectKey}/shopping-lists/{id} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Get ShoppingList by Key
view_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
key String ​ | key of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
curl --get https://api.{region}.commercetools.com/{projectKey}/shopping-lists/key={key} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Get ShoppingList in Store
Get ShoppingList in Store by ID
store
field, or the store
field references a different Store,
the ResourceNotFound error is returned.view_shopping_lists:{projectKey}
view_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
id String ​ | id of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
curl --get https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/{id} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Get ShoppingList in Store by Key
store
field, or the store
field references a different Store,
the ResourceNotFound error is returned.view_shopping_lists:{projectKey}
view_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
key String ​ | key of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
curl --get https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/key={key} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Query ShoppingLists
view_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
where | The parameter can be passed multiple times. |
sort | The parameter can be passed multiple times. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
limit Int ​ | Number of results requested. Default: 20 ​ |
offset Int ​ | Number of elements skipped. Default: 0 ​ |
withTotal Boolean ​ | Controls the calculation of the total number of query results. Set to false to improve query performance when the total is not needed.Default: true ​ |
var.<varName> String ​ | Predicate parameter values. The parameter can be passed multiple times. |
ShoppingListPagedQueryResponse
asapplication/json
curl --get https://api.{region}.commercetools.com/{projectKey}/shopping-lists -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"limit": 20,
"offset": 0,
"count": 1,
"total": 1,
"results": [
{
"id": "9693f04b-5aec-467f-baa1-fc74da7d0c3d",
"version": 1,
"name": {
"en": "test"
},
"key": "test",
"lineItems": [],
"textLineItems": [],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"createdAt": "2017-03-30T11:49:40.904Z",
"lastModifiedAt": "2017-03-30T11:49:40.904Z"
}
]
}
Query ShoppingLists in Store
view_shopping_lists:{projectKey}
view_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
where | The parameter can be passed multiple times. |
sort | The parameter can be passed multiple times. |
expand | Limitation: expand=lineItems[0].variant and expand=lineItems[0].productSlug are not supported.The parameter can be passed multiple times. |
limit Int ​ | Number of results requested. Default: 20 ​ |
offset Int ​ | Number of elements skipped. Default: 0 ​ |
withTotal Boolean ​ | Controls the calculation of the total number of query results. Set to false to improve query performance when the total is not needed.Default: true ​ |
var.<varName> String ​ | Predicate parameter values. The parameter can be passed multiple times. |
ShoppingListPagedQueryResponse
asapplication/json
curl --get https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"limit": 20,
"offset": 0,
"count": 1,
"total": 1,
"results": [
{
"id": "9693f04b-5aec-467f-baa1-fc74da7d0c3d",
"version": 1,
"name": {
"en": "test"
},
"key": "test",
"lineItems": [],
"textLineItems": [],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"createdAt": "2017-03-30T11:49:40.904Z",
"lastModifiedAt": "2017-03-30T11:49:40.904Z"
}
]
}
Check if ShoppingList exists
Check if ShoppingList exists by ID
id
. Returns a 200 OK
status if the ShoppingList exists or a 404 Not Found
otherwise.view_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
id String ​ | id of the ShoppingList. |
curl --head https://api.{region}.commercetools.com/{projectKey}/shopping-lists/{id} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
Check if ShoppingList exists by Key
key
. Returns a 200 OK
status if the ShoppingList exists or a 404 Not Found
otherwise.view_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
key String ​ | key of the ShoppingList. |
curl --head https://api.{region}.commercetools.com/{projectKey}/shopping-lists/key={key} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
Check if ShoppingList exists by Query Predicate
200 OK
status if any ShoppingLists match the query predicate, or a 404 Not Found
otherwise.view_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
where | The parameter can be passed multiple times. |
curl --head https://api.{region}.commercetools.com/{projectKey}/shopping-lists -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
Check if ShoppingList exists in Store
Check if ShoppingList exists in Store by ID
id
. Returns a 200 OK
status if the ShoppingList exists or Not Found otherwise.view_shopping_lists:{projectKey}
view_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
id String ​ | id of the ShoppingList. |
curl --head https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/{id} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
Check if ShoppingList exists in Store by Key
key
. Returns a 200 OK
status if the ShoppingList exists or Not Found otherwise.view_shopping_lists:{projectKey}
view_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
key String ​ | key of the ShoppingList. |
curl --head https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/key={key} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
Check if ShoppingList exists in Store by Query Predicate
200 OK
status if any ShoppingLists match the query predicate, or Not Found otherwise.view_shopping_lists:{projectKey}
view_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
where | The parameter can be passed multiple times. |
curl --head https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
Create ShoppingList
manage_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
application/json
curl https://api.{region}.commercetools.com/{projectKey}/shopping-lists -i \
--header "Authorization: Bearer ${BEARER_TOKEN}" \
--header 'Content-Type: application/json' \
--data-binary @- << DATA
{
"name" : {
"en" : "My shopping list"
},
"slug" : {
"en" : "my-shopping-list"
},
"customer" : {
"typeId" : "customer",
"id" : "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"key" : "my-shopping-list",
"deleteDaysAfterLastModification" : 100,
"lineItems" : [ {
"sku" : "product-variant-sku",
"quantity" : 5
}, {
"productId" : "0e131f46-8d1a-4761-9c83-b45ab5d3501e",
"variantId" : 2
} ],
"textLineItems" : [ {
"name" : {
"en" : "My shopping list item"
},
"description" : {
"en" : "This is a good gift idea"
},
"quantity" : 5
} ],
"businessUnit" : {
"key" : "bu-345-france",
"typeId" : "business-unit"
}
}
DATA
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Create ShoppingList in Store
store
field of a ShoppingList is always set to the Store specified in the path parameter.manage_shopping_lists:{projectKey}
manage_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
expand | Limitation: expand=lineItems[0].variant and expand=lineItems[0].productSlug are not supported.The parameter can be passed multiple times. |
application/json
application/json
curl https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists -i \
--header "Authorization: Bearer ${BEARER_TOKEN}" \
--header 'Content-Type: application/json' \
--data-binary @- << DATA
{
"name" : {
"en" : "My shopping list"
},
"slug" : {
"en" : "my-shopping-list"
},
"customer" : {
"typeId" : "customer",
"id" : "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"key" : "my-shopping-list",
"deleteDaysAfterLastModification" : 100,
"lineItems" : [ {
"sku" : "product-variant-sku",
"quantity" : 5
}, {
"productId" : "0e131f46-8d1a-4761-9c83-b45ab5d3501e",
"variantId" : 2
} ],
"textLineItems" : [ {
"name" : {
"en" : "My shopping list item"
},
"description" : {
"en" : "This is a good gift idea"
},
"quantity" : 5
} ],
"businessUnit" : {
"key" : "bu-345-france",
"typeId" : "business-unit"
}
}
DATA
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Update ShoppingList
Update ShoppingList by ID
manage_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
id String ​ | id of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
version ​Int​ | Expected version of the ShoppingList on which the changes should be applied.
If the expected version does not match the actual version, a ConcurrentModification error will be returned. |
actions ​Array of ShoppingListUpdateAction​ | List of update actions to be performed on the ShoppingList. |
application/json
curl https://api.{region}.commercetools.com/{projectKey}/shopping-lists/{id} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}" \
--header 'Content-Type: application/json' \
--data-binary @- << DATA
{
"version" : 1,
"actions" : [ {
"action" : "changeName",
"name" : {
"en" : "New Name"
}
} ]
}
DATA
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Update ShoppingList by Key
manage_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
key String ​ | key of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
version ​Int​ | Expected version of the ShoppingList on which the changes should be applied.
If the expected version does not match the actual version, a ConcurrentModification error will be returned. |
actions ​Array of ShoppingListUpdateAction​ | List of update actions to be performed on the ShoppingList. |
application/json
curl https://api.{region}.commercetools.com/{projectKey}/shopping-lists/key={key} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}" \
--header 'Content-Type: application/json' \
--data-binary @- << DATA
{
"version" : 1,
"actions" : [ {
"action" : "changeName",
"name" : {
"en" : "New Name"
}
} ]
}
DATA
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Update ShoppingList in Store
Update ShoppingList in Store by ID
store
field, or the store
field references a different Store,
the ResourceNotFound error is returned.manage_shopping_lists:{projectKey}
manage_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
id String ​ | id of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
version ​Int​ | Expected version of the ShoppingList on which the changes should be applied.
If the expected version does not match the actual version, a ConcurrentModification error will be returned. |
actions ​Array of ShoppingListUpdateAction​ | List of update actions to be performed on the ShoppingList. |
application/json
curl https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/{id} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}" \
--header 'Content-Type: application/json' \
--data-binary @- << DATA
{
"version" : 1,
"actions" : [ {
"action" : "changeName",
"name" : {
"en" : "New Name"
}
} ]
}
DATA
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Update ShoppingList in Store by Key
store
field, or the store
field references a different Store,
the ResourceNotFound error is returned.manage_shopping_lists:{projectKey}
manage_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
key String ​ | key of the ShoppingList. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
application/json
version ​Int​ | Expected version of the ShoppingList on which the changes should be applied.
If the expected version does not match the actual version, a ConcurrentModification error will be returned. |
actions ​Array of ShoppingListUpdateAction​ | List of update actions to be performed on the ShoppingList. |
application/json
curl https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/key={key} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}" \
--header 'Content-Type: application/json' \
--data-binary @- << DATA
{
"version" : 1,
"actions" : [ {
"action" : "changeName",
"name" : {
"en" : "New Name"
}
} ]
}
DATA
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Update actions
Set Key
action ​String​ | "setKey" |
key ​String​ | Value to set. If empty, any existing value will be removed. MinLength:Â2 ​MaxLength: 256 ​Pattern: ^[A-Za-z0-9_-]+$ ​ |
{
"action": "setKey",
"key": "new-shopping-list-key"
}
Set Slug
action ​String​ | "setSlug" |
slug ​ | Value to set. If empty, any existing value will be removed. Each slug is unique across a Project, but a ShoppingList can have the same slug for different languages. Must match the pattern ^[A-Za-z0-9_-]{2,256}+$ |
{
"action": "setSlug",
"slug": {
"en": "en-slug",
"de": "de-slug"
}
}
Change Name
action ​String​ | "changeName" |
name ​ | New value to set. Must not be empty. |
{
"action": "changeName",
"name": {
"de": "German name",
"en": "English name"
}
}
Set Description
action ​String​ | "setDescription" |
description ​ | Value to set. If empty, any existing value will be removed. |
{
"action": "setDescription",
"description": {
"en": "New description",
"de": "Neue Beschreibung"
}
}
Set Customer
action ​String​ | "setCustomer" |
customer ​ | The Customer the ShoppingList should be associated to. If empty, any existing value will be removed. |
{
"action": "setCustomer",
"customer": {
"typeId": "customer",
"id": "{{customer-id}}"
}
}
Set Store
action ​String​ | "setStore" |
store ​ | The Store the ShoppingList should be assigned to. If empty, any existing value will be removed. |
{
"action": "setStore",
"store": {
"key": "{{store-key}}",
"typeId": "store"
}
}
Set Business Unit B2B
Updates the Business Unit on the Shopping List. The Shopping List must have an existing Business Unit assigned already.
action ​String​ | "setBusinessUnit" |
businessUnit ​ | The Business Unit to assign to the Shopping List, which must have access to the Store that is set on the Shopping List. |
{
"action": "setBusinessUnit",
"businessUnit": {
"key": "{{business-unit-key}}",
"typeId": "business-unit"
}
}
Set AnonymousId
action ​String​ | "setAnonymousId" |
anonymousId ​String​ | Value to set. If empty, any existing value will be removed. |
{
"action": "setAnonymousId",
"anonymousId": "anonymousId"
}
Set Custom Type
action ​String​ | "setCustomType" |
type ​ | Defines the Type that extends the ShoppingList with Custom Fields.
If absent, any existing Type and Custom Fields are removed from the ShoppingList. |
fields ​ | Sets the Custom Fields fields for the ShoppingList. |
{
"action": "setCustomType",
"type": {
"id": "{{type-id}}",
"typeId": "type"
},
"fields": {
"exampleStringField": "TextString"
}
}
Set CustomField
action ​String​ | "setCustomField" |
name ​String​ | Name of the Custom Field. |
value ​ | If value is absent or null , this field will be removed if it exists.
Removing a field that does not exist returns an InvalidOperation error.
If value is provided, it is set for the field defined by name . |
{
"action": "setCustomField",
"name": "exampleStringField",
"value": "TextString"
}
Set DeleteDaysAfterLastModification
action ​String​ | "setDeleteDaysAfterLastModification" |
deleteDaysAfterLastModification ​Int​ | Value to set. If empty, any existing value will be removed. Minimum:Â1 ​ |
{
"action": "setDeleteDaysAfterLastModification",
"deleteDaysAfterLastModification": 10
}
Update ShoppingListLineItems
Add ShoppingListLineItem
productID
and variantID
, or by the sku
.
If the ShoppingList already contains a ShoppingListLineItem for the same Product Variant with the same Custom Fields, then only the quantity of the existing ShoppingListLineItem is increased.
A ShoppingListLineItem with an empty variantId
is not considered the same as a ShoppingListLineItem with a variantId
currently referring to the Master Variant.action ​String​ | "addLineItem" |
key ​String​ | User-defined identifier of the ShoppingListLineItem. Must be unique per ShoppingList. MinLength: 2 ​MaxLength: 256 ​Pattern: ^[a-zA-Z0-9_-] ​ |
sku ​String​ | sku of the ProductVariant. |
productId ​String​ | Unique identifier of a Product. |
variantId ​Int​ | id of the ProductVariant. If not set, the ShoppingListLineItem refers to the Master Variant. |
quantity ​Int​ | Number of Products in the ShoppingListLineItem. Default:Â1 ​Minimum: 1 ​ |
addedAt ​DateTime​ | Date and time the ShoppingListLineItem is added to the ShoppingList. If not set, the current date and time (UTC) is used. |
custom ​ | Custom Fields defined for the ShoppingListLineItem. |
{
"action": "addLineItem",
"productId": "{{product-id}}",
"variantId": 1,
"quantity": 2
}
Remove ShoppingListLineItem
action ​String​ | "removeLineItem" |
lineItemId ​String​ | |
lineItemKey ​String​ | |
quantity ​Int​ | Amount to remove from the Minimum: quantity of the ShoppingListLineItem. If not set, the ShoppingListLineItem is removed from the ShoppingList. If this value matches or exceeds the current quantity of the ShoppingListLineItem, the ShoppingListLineItem is removed from the ShoppingList.1 ​ |
{
"action": "removeLineItem",
"lineItemId": "{{lineItemId}}",
"quantity": 2
}
Change ShoppingListLineItem Quantity
action ​String​ | "changeLineItemQuantity" |
lineItemId ​String​ | |
lineItemKey ​String​ | |
quantity ​Int​ | New value to set. If Minimum: 0 , the ShoppingListLineItem is removed from the ShoppingList.0 ​ |
{
"action": "changeLineItemQuantity",
"lineItemId": "{{lineItemId}}",
"quantity": 8
}
Change ShoppingListLineItems Order
action ​String​ | "changeLineItemsOrder" |
lineItemOrder ​Array of String​ | All existing ShoppingListLineItem id s in the desired new order. |
{
"action": "changeLineItemsOrder",
"lineItemOrder": [
"{{lineItemId2}}",
"{{lineItemId}}"
]
}
Set ShoppingListLineItem Custom Type
action ​String​ | "setLineItemCustomType" |
lineItemId ​String​ | |
lineItemKey ​String​ | |
type ​ | Defines the Type that extends the ShoppingListLineItem with Custom Fields.
If absent, any existing Type and Custom Fields are removed from the ShoppingListLineItem. |
fields ​ | Sets the Custom Fields fields for the ShoppingListLineItem. |
{
"action": "setLineItemCustomType",
"lineItemId": "{{lineItemId}}",
"type": {
"id": "{{type-id}}",
"typeId": "type"
},
"fields": {
"exampleStringField": "TextString"
}
}
Set ShoppingListLineItem CustomField
action ​String​ | "setLineItemCustomField" |
lineItemId ​String​ | |
lineItemKey ​String​ | |
name ​String​ | Name of the Custom Field. |
value ​ | If value is absent or null , this field will be removed if it exists.
Removing a field that does not exist returns an InvalidOperation error.
If value is provided, it is set for the field defined by name . |
{
"action": "setLineItemCustomField",
"lineItemId": "{{lineItemId}}",
"name": "exampleStringField",
"value": "TextString"
}
Update TextLineItems
Add TextLineItem
action ​String​ | "addTextLineItem" |
key ​String​ | User-defined identifier of the TextLineItem. Must be unique per ShoppingList. MinLength: 2 ​MaxLength: 256 ​Pattern: ^[a-zA-Z0-9_-] ​ |
name ​ | Name of the TextLineItem. |
description ​ | Description of the TextLineItem. |
quantity ​Int​ | Number of entries in the TextLineItem. Default:Â1 ​ |
addedAt ​DateTime​ | Date and time the TextLineItem is added to the ShoppingList. If not set, the current date and time (UTC) is used. |
custom ​ | Custom Fields defined for the TextLineItem. |
{
"action": "addTextLineItem",
"name": {
"de": "German name for text line item",
"en": "English name for text line item"
}
}
Remove TextLineItem
action ​String​ | "removeTextLineItem" |
textLineItemId ​String​ | |
textLineItemKey ​String​ | |
quantity ​Int​ | Amount to remove from the Minimum: quantity of the TextLineItem. If not set, the TextLineItem is removed from the ShoppingList. If this value matches or exceeds the current quantity of the TextLineItem, the TextLineItem is removed from the ShoppingList.1 ​ |
{
"action": "removeTextLineItem",
"textLineItemId": "{{lineItemId}}",
"quantity": 1
}
Change TextLineItem Quantity
action ​String​ | "changeTextLineItemQuantity" |
textLineItemId ​String​ | |
textLineItemKey ​String​ | |
quantity ​Int​ | New value to set. If Minimum: 0 , the TextLineItem is removed from the ShoppingList.0 ​ |
{
"action": "changeTextLineItemQuantity",
"textLineItemId": "{{lineItemId}}",
"quantity": 1
}
Change TextLineItem Name
action ​String​ | "changeTextLineItemName" |
textLineItemId ​String​ | |
textLineItemKey ​String​ | |
name ​ | New value to set. Must not be empty. |
{
"action": "changeTextLineItemName",
"textLineItemId": "{{lineItemId}}",
"name": {
"de": "New German text line item name",
"en": "New English text line item name"
}
}
Set TextLineItem Description
action ​String​ | "setTextLineItemDescription" |
textLineItemId ​String​ | |
textLineItemKey ​String​ | |
description ​ | Value to set. If empty, any existing value will be removed. |
{
"action": "setTextLineItemDescription",
"textLineItemId": "{{lineItemId}}",
"description": {
"en": "New description",
"de": "Neue Beschreibung"
}
}
Change TextLineItems Order
action ​String​ | "changeTextLineItemsOrder" |
textLineItemOrder ​Array of String​ | Must contain all existing TextLineItem id s in the desired new order. |
{
"action": "changeTextLineItemsOrder",
"textLineItemOrder": [
"{{lineItemId2}}",
"{{lineItemId}}"
]
}
Set TextLineItem Custom Type
action ​String​ | "setTextLineItemCustomType" |
textLineItemId ​String​ | |
textLineItemKey ​String​ | |
type ​ | Defines the Type that extends the TextLineItem with Custom Fields.
If absent, any existing Type and Custom Fields are removed from the TextLineItem. |
fields ​ | Sets the Custom Fields fields for the TextLineItem. |
{
"action": "setTextLineItemCustomType",
"textLineItemId": "{{lineItemId}}",
"type": {
"id": "{{type-id}}",
"typeId": "type"
},
"fields": {
"exampleStringField": "TextString"
}
}
Set TextLineItem CustomField
action ​String​ | "setTextLineItemCustomField" |
textLineItemId ​String​ | |
textLineItemKey ​String​ | |
name ​String​ | Name of the Custom Field. |
value ​ | If value is absent or null , this field will be removed if it exists.
Removing a field that does not exist returns an InvalidOperation error.
If value is provided, it is set for the field defined by name . |
{
"action": "setTextLineItemCustomField",
"textLineItemId": "{{lineItemId}}",
"name": "exampleStringField",
"value": "TextString"
}
Delete ShoppingList
Delete ShoppingList by ID
manage_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
id String ​ | id of the ShoppingList. |
version Int ​ | Last seen version of the resource. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
dataErasure Boolean ​ | To erase all related personal data in compliance with GDPR, set to true .Default: false ​ |
application/json
curl -X DELETE https://api.{region}.commercetools.com/{projectKey}/shopping-lists/{id}?version={version} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Delete ShoppingList by Key
manage_shopping_lists:{projectKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
key String ​ | key of the ShoppingList. |
version Int ​ | Last seen version of the resource. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
dataErasure Boolean ​ | To erase all related personal data in compliance with GDPR, set to true .Default: false ​ |
application/json
curl -X DELETE https://api.{region}.commercetools.com/{projectKey}/shopping-lists/key={key}?version={version} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Delete ShoppingList in Store
Delete ShoppingList in Store by ID
store
field, or the store
field references a different Store,
the ResourceNotFound error is returned.manage_shopping_lists:{projectKey}
manage_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
id String ​ | id of the ShoppingList. |
version Int ​ | Last seen version of the resource. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
dataErasure Boolean ​ | To erase all related personal data in compliance with GDPR, set to true .Default: false ​ |
application/json
curl -X DELETE https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/{id}?version={version} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}
Delete ShoppingList in Store by Key
store
field, or the store
field references a different Store,
the ResourceNotFound error is returned.manage_shopping_lists:{projectKey}
manage_shopping_lists:{projectKey}:{storeKey}
region String ​ | Region in which the Project is hosted. |
projectKey String ​ | key of the Project. |
storeKey String ​ | key of the Store. |
key String ​ | key of the ShoppingList. |
version Int ​ | Last seen version of the resource. |
expand | When expanding variant and productSlug on ShoppingListLineItem, expand the entire array. You cannot expand a single element (for example, expand=lineItems[0].variant is not supported).The parameter can be passed multiple times. |
dataErasure Boolean ​ | To erase all related personal data in compliance with GDPR, set to true .Default: false ​ |
application/json
curl -X DELETE https://api.{region}.commercetools.com/{projectKey}/in-store/key={storeKey}/shopping-lists/key={key}?version={version} -i \
--header "Authorization: Bearer ${BEARER_TOKEN}"
{
"id": "acb58513-ccfd-4ee8-8f28-9b7238fb91cd",
"version": 1,
"name": {
"en": "My shopping list"
},
"key": "my-shopping-list",
"customer": {
"typeId": "customer",
"id": "e73cd97f-846e-44a0-b418-3ed044a8e398"
},
"slug": {
"en": "my-shopping-list"
},
"lineItems": [
{
"id": "ade85d60-736b-4ca8-87ed-01fde78f92c5",
"productId": "077bb11b-0d00-4e00-aced-48f493a79da0",
"name": {
"en": "Product name"
},
"productType": {
"typeId": "product-type",
"id": "a941b0b1-5c8f-41de-99e4-de965714d89f"
},
"variantId": 2,
"quantity": 1,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"textLineItems": [
{
"id": "c25aaca9-bb25-4a9f-bb1f-be0a78e98dcb",
"name": {
"en": "My shopping list item"
},
"description": {
"en": "This is a good gift idea"
},
"quantity": 5,
"addedAt": "2022-08-22T14:11:03.572Z"
}
],
"businessUnit": {
"key": "bu-345-france",
"typeId": "business-unit"
},
"deleteDaysAfterLastModification": 100,
"createdAt": "2022-08-22T14:11:03.587Z",
"lastModifiedAt": "2022-08-22T14:11:03.587Z"
}