Glue API: Manage marketplace shopping list items
Edit on GitHubThis endpoint allows managing marketplace shopping list items.
Installation
For detailed information on the modules that provide the API functionality and related installation instructions, see:
- Install the Shopping Lists Glue API
- Install the Product Glue API
- Install the Marketplace Shopping Lists Glue API
Add items to a shopping list
To add items to a shopping list, send the request:
POST
/shopping-lists/{{shopping_list_id}}/shopping-list-items
PATH PARAMETER | DESCRIPTION |
---|---|
{{shopping_list_id}} | Unique identifier of a shopping list to add items to. |
Request
HEADER KEY | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
Authorization | string | ✓ | String containing digits, letters, and symbols that authorize the company user. Authenticate as a company user to get the value. |
QUERY PARAMETER | DESCRIPTION | POSSIBLE VALUES |
---|---|---|
include | Adds resource relationships to the request. | concrete-products |
Request sample: add items to the shopping list
POST https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items
{
"data": {
"type": "shopping-list-items",
"attributes": {
"quantity": 4,
"sku": "005_30663301"
}
}
}
Request sample: add items to the shopping list, and include information about the concrete products
POST https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items?include=concrete-products
{
"data": {
"type": "shopping-list-items",
"attributes": {
"quantity": 4,
"sku": "128_27314278"
}
}
}
Request sample: add marketplace products to the shopping list
POST https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items?include=shopping-list-items
{
"data": {
"type": "shopping-list-items",
"attributes": {
"quantity": 4,
"sku": "005_30663301"
}
}
}
Request sample: add product offers to the shopping list
POST https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items?include=shopping-list-items
{
"data":{
"type":"shopping-list-items",
"attributes":{
"sku":"091_25873091",
"quantity": 3,
"productOfferReference":"offer3"
}
}
}
ATTRIBUTE | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
quantity | Integer | ✓ | Quantity of the product to add. |
sku | String | ✓ | SKU of the product to add. Only concrete products are allowed. |
productOfferReference | String | Unique identifier of the product offer. |
Response
Response sample: add items to the shopping list
{
"data": {
"type": "shopping-list-items",
"id": "00fed212-3dc9-569f-885f-3ddca41dea08",
"attributes": {
"quantity": 4,
"sku": "005_30663301"
},
"links": {
"self": "https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items/00fed212-3dc9-569f-885f-3ddca41dea08"
}
}
}
Response sample: add items to the shopping list, and include information about the concrete products
{
"data": {
"type": "shopping-list-items",
"id": "6283f155-6b8a-5d8c-96b7-3af4091eea3e",
"attributes": {
"quantity": 4,
"sku": "128_27314278"
},
"links": {
"self": "https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items/6283f155-6b8a-5d8c-96b7-3af4091eea3e"
},
"relationships": {
"concrete-products": {
"data": [
{
"type": "concrete-products",
"id": "128_27314278"
}
]
}
}
},
"included": [
{
"type": "concrete-products",
"id": "128_27314278",
"attributes": {
"sku": "128_27314278",
"isDiscontinued": false,
"discontinuedNote": null,
"averageRating": null,
"reviewCount": 0,
"name": "Lenovo ThinkCentre E73",
"description": "Small Form Factor Small Form Factor desktops provide the ultimate performance with full-featured scalability, yet weigh as little as 13.2 lbs / 6 kgs. Keep your business-critical information safe through USB port disablement and the password-protected BIOS and HDD. You can also safeguard your hardware by physically securing your mouse and keyboard, while the Kensington slot enables you to lock down your E73. Lenovo Desktop Power Manager lets you balance power management and performance to save energy and lower costs. The E73 is also ENERGY STAR compliant, EPEAT® Gold and Cisco EnergyWise™ certified—so you can feel good about the planet and your bottom line. With SuperSpeed USB 3.0, transfer data up to 10 times faster than previous USB technologies. You can also connect to audio- and video-related devices with WiFi and Bluetooth® technology.",
"attributes": {
"processor_threads": "8",
"pci_express_slots_version": "3",
"internal_memory": "8 GB",
"stepping": "C0",
"brand": "Lenovo",
"processor_frequency": "3.6 GHz"
},
"superAttributesDefinition": [
"internal_memory",
"processor_frequency"
],
"metaTitle": "Lenovo ThinkCentre E73",
"metaKeywords": "Lenovo,Tax Exempt",
"metaDESCRIPTION": "Small Form Factor Small Form Factor desktops provide the ultimate performance with full-featured scalability, yet weigh as little as 13.2 lbs / 6 kgs. Keep",
"attributeNames": {
"processor_threads": "Processor Threads",
"pci_express_slots_version": "PCI Express slots version",
"internal_memory": "Max internal memory",
"stepping": "Stepping",
"brand": "Brand",
"processor_frequency": "Processor frequency"
}
},
"links": {
"self": "https://glue.mysprykershop.com/concrete-products/128_27314278"
}
}
]
}
Response sample: add marketplace products to the shopping list
{
"data": {
"type": "shopping-list-items",
"id": "29f1d940-00b6-5492-abf3-d2b5ff15f0b2",
"attributes": {
"productOfferReference": null,
"merchantReference": "MER000001",
"quantity": 3,
"sku": "110_19682159"
},
"links": {
"self": "https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items/29f1d940-00b6-5492-abf3-d2b5ff15f0b2"
}
}
}
Response sample: add product offers to the shopping list
{
"data": {
"type": "shopping-list-items",
"id": "946451d1-3c40-559e-95c7-ebda2d12bebf",
"attributes": {
"productOfferReference": "offer3",
"merchantReference": "MER000001",
"quantity": 3,
"sku": "091_25873091"
},
"links": {
"self": "https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items/946451d1-3c40-559e-95c7-ebda2d12bebf"
}
}
}
ATTRIBUTE | TYPE | DESCRIPTION |
---|---|---|
quantity | Integer | Quantity of the product. |
sku | String | Product SKU. |
productOfferReference | String | Unique identifier of the product offer. |
merchantReference | String | Unique identifier of the merchant. |
RESOURCE | ATTRIBUTE | TYPE | DESCRIPTION |
---|---|---|---|
concrete-products | sku | String | SKU of the concrete product. |
concrete-products | isDiscontinued | Boolean | Specifies whether a product is discontinued: true - the product is discontinued and requires a replacement item; false—the product is not discontinued. |
concrete-products | discontinuedNote | String | Optional note that was specified when marking a product as discontinued. |
concrete-products | averageRating | String | Average rating of the product based on customer rating. |
concrete-products | reviewCount | Integer | Number of reviews left by customer for this product. |
concrete-products | name | String | Name of the concrete product. |
concrete-products | description | String | Description of the concrete product. |
concrete-products | attributes | Object | List of attribute keys and their values for the product. |
concrete-products | superAttributeDefinition | String | List of attributes that are flagged as super attributes. |
concrete-products | metaTitle | String | Meta title of the product. |
concrete-products | metaKeywords | String | Meta keywords of the product. |
concrete-products | metaDescription | String | Meta description of the product. |
concrete-products | attributeNames | String | List of attribute keys and their translations. |
concrete-products | productAbstractSku | String | Unique identifier of the abstract product owning this concrete product. |
Change item quantity in a shopping list
To change the item quantity in a shopping list, send the request:
PATCH
/shopping-lists/{{shopping_list_id}}/shopping-list-items/{{shopping_list_item_id}}
PATH PARAMETER | DESCRIPTION |
---|---|
{{shopping_list_id}} | Unique identifier of a shopping list to update item quantity in. |
{{shopping_list_item_id}} | Unique identifier of a shopping list item to change the quantity of. To get it, Retrieve shopping lists, or Retrieve a shopping list with the shopping-list-items included. |
Request
HEADER KEY | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
Authorization | string | ✓ | String containing digits, letters, and symbols that authorize the company user. Authenticate as a company user to get the value. |
QUERY PARAMETER | DESCRIPTION | EXEMPLARY VALUES |
---|---|---|
include | Adds resource relationships to the request. | concrete-products |
Request sample: change the quantity of the items in the shopping list
PATCH https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items/00fed212-3dc9-569f-885f-3ddca41dea08
{
"data": {
"type": "shopping-list-items",
"attributes": {
"quantity": 12,
"sku": "005_30663301"
}
}
}
Request sample: change the quantity of the items in the shopping list, and include concrete products
PATCH https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items/00fed212-3dc9-569f-885f-3ddca41dea08?include=concrete-products
{
"data": {
"type": "shopping-list-items",
"attributes": {
"quantity": 12,
"sku": "128_27314278"
}
}
}
Request sample: change the quantity of marketplace products in the shopping list
PATCH https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items/29f1d940-00b6-5492-abf3-d2b5ff15f0b2
{
"data": {
"type": "shopping-list-items",
"attributes": {
"quantity": 15,
"sku": "110_19682159"
}
}
}
Request sample: change the quantity of product offers in the shopping list
PATCH https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items/946451d1-3c40-559e-95c7-ebda2d12bebf
{
"data": {
"type": "shopping-list-items",
"attributes": {
"quantity": 10,
"sku": "091_25873091"
}
}
}
ATTRIBUTE | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
sku | String | ✓ | SKU of the product you want to change the quantity of. Only concrete products are allowed. |
quantity | Integer | ✓ | New quantity of the product. |
Response
Response sample: change the quantity of the items in the shopping list
{
"data": {
"type": "shopping-list-items",
"id": "00fed212-3dc9-569f-885f-3ddca41dea08",
"attributes": {
"quantity": 12,
"sku": "005_30663301"
},
"links": {
"self": "https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items/00fed212-3dc9-569f-885f-3ddca41dea08"
}
}
}
Response sample: change the quantity of the items in the shopping list, and include concrete products
{
"data": {
"type": "shopping-list-items",
"id": "6283f155-6b8a-5d8c-96b7-3af4091eea3e",
"attributes": {...},
"links": {... },
"relationships": {
"concrete-products": {
"data": [
{
"type": "concrete-products",
"id": "128_27314278"
}
]
}
}
},
"included": [
{
"type": "concrete-products",
"id": "128_27314278",
"attributes": {
"sku": "128_27314278",
"isDiscontinued": false,
"discontinuedNote": null,
"averageRating": null,
"reviewCount": 0,
"name": "Lenovo ThinkCentre E73",
"description": "Small Form Factor Small Form Factor desktops provide the ultimate performance with full-featured scalability, yet weigh as little as 13.2 lbs / 6 kgs. Keep your business-critical information safe through USB port disablement and the password-protected BIOS and HDD. You can also safeguard your hardware by physically securing your mouse and keyboard, while the Kensington slot enables you to lock down your E73. Lenovo Desktop Power Manager lets you balance power management and performance to save energy and lower costs. The E73 is also ENERGY STAR compliant, EPEAT® Gold and Cisco EnergyWise™ certified—so you can feel good about the planet and your bottom line. With SuperSpeed USB 3.0, transfer data up to 10 times faster than previous USB technologies. You can also connect to audio- and video-related devices with WiFi and Bluetooth® technology.",
"attributes": {
"processor_threads": "8",
"pci_express_slots_version": "3",
"internal_memory": "8 GB",
"stepping": "C0",
"brand": "Lenovo",
"processor_frequency": "3.6 GHz"
},
"superAttributesDefinition": [
"internal_memory",
"processor_frequency"
],
"metaTitle": "Lenovo ThinkCentre E73",
"metaKeywords": "Lenovo,Tax Exempt",
"metaDESCRIPTION": "Small Form Factor Small Form Factor desktops provide the ultimate performance with full-featured scalability, yet weigh as little as 13.2 lbs / 6 kgs. Keep",
"attributeNames": {
"processor_threads": "Processor Threads",
"pci_express_slots_version": "PCI Express slots version",
"internal_memory": "Max internal memory",
"stepping": "Stepping",
"brand": "Brand",
"processor_frequency": "Processor frequency"
}
},
"links": {
"self": "https://glue.mysprykershop.com/concrete-products/128_27314278"
}
}
]
}
Response sample: change the quantity of marketplace products in the shopping list
{
"data": {
"type": "shopping-list-items",
"id": "29f1d940-00b6-5492-abf3-d2b5ff15f0b2",
"attributes": {
"productOfferReference": null,
"merchantReference": "MER000001",
"quantity": 15,
"sku": "110_19682159"
},
"links": {
"self": "https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items/29f1d940-00b6-5492-abf3-d2b5ff15f0b2"
}
}
}
Response sample: change the quantity of product offers in the shopping list
{
"data": {
"type": "shopping-list-items",
"id": "946451d1-3c40-559e-95c7-ebda2d12bebf",
"attributes": {
"productOfferReference": "offer3",
"merchantReference": "MER000001",
"quantity": 10,
"sku": "091_25873091"
},
"links": {
"self": "https://glue.mysprykershop.com/shopping-lists/c0bc6296-8a0c-50d9-b25e-5bface7671ce/shopping-list-items/946451d1-3c40-559e-95c7-ebda2d12bebf"
}
}
}
RESOURCE | ATTRIBUTE | TYPE | DESCRIPTION |
---|---|---|---|
concrete-products | sku | String | SKU of the concrete product. |
concrete-products | isDiscontinued | Boolean | Specifies whether a product is discontinued: true - the product is discontinued and requires a replacement item; false—the product is not discontinued. |
concrete-products | discontinuedNote | String | Optional note that was specified when marking a product as discontinued. |
concrete-products | averageRating | String | Average rating of the product based on customer rating. |
concrete-products | reviewCount | Integer | Number of reviews left by customer for this product. |
concrete-products | name | String | Name of the concrete product. |
concrete-products | description | String | Description of the concrete product. |
concrete-products | attributes | Object | List of attribute keys and their values for the product. |
concrete-products | superAttributeDefinition | String | List of attributes that are flagged as super attributes. |
concrete-products | metaTitle | String | Meta title of the product. |
concrete-products | metaKeywords | String | Meta keywords of the product. |
concrete-products | metaDescription | String | Meta description of the product. |
concrete-products | attributeNames | String | List of attribute keys and their translations. |
concrete-products | productAbstractSku | String | Unique identifier of the abstract product owning this concrete product. |
For response attributes, see Add items to a shopping list.
Remove an item from a shopping list
To remove an item from a shopping list, send the request:
DELETE
/shopping-lists/{{shopping_list_id}}/shopping-list-items/{{shopping_list_item_id}}
PATH PARAMETER | DESCRIPTION |
---|---|
{{shopping_list_id}} | Unique identifier of a shopping list to delete an item from. |
{{shopping_list_item_id}} | Unique identifier of a shopping list item to remove. To get it, Retrieve shopping lists, or Retrieve a shopping list with the shopping-list-items included. |
Request
HEADER KEY | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
Authorization | string | ✓ | String containing digits, letters, and symbols that authorize the company user. Authenticate as a company user to get the value. |
Request sample:
DELETE https://glue.mysprykershop.com/shopping-lists/ecdb5c3b-8bba-5a97-8e7b-c0a5a8f8a74a/shopping-list-items/00fed212-3dc9-569f-885f-3ddca41dea08
Response
If the item is removed successfully, the endpoint returns the 204 No Content
status code.
Possible errors
CODE | REASON |
---|---|
001 | Access token is incorrect. |
002 | Access token is missing. |
400 | Provided access token is not an access token of a сompany user. |
901 | Shop list name or item name is not specified or too long. OR Item quantity is not specified or too large. |
1501 | Shopping list ID is not specified. |
1502 | Shopping list item is not specified. |
1503 | Specified shopping list is not found. |
1504 | Shopping list item is not found. |
1505 | Shopping list write permission is required. |
1506 | Shopping list with given name already exists. |
1507 | Shopping list item quantity is not valid. |
1508 | Concrete product not found. |
1509 | Shopping list validation failed. |
1510 | Product is discontinued. |
1511 | Product is not active. |
1512 | Merchant is inactive. |
1513 | Merchant is not approved. |
1514 | Product offer is not approved. |
1515 | Product is not approved. |
1516 | Product offer is not active. |
1517 | Product offer is not found. |
1518 | Product is not equal to the current Store. |
1519 | Product offer is not equal to the current Store. |
To view generic errors that originate from the Glue Application, see Reference information: GlueApplication errors.
Thank you!
For submitting the form