Product
Get Single
This returns a represenation of a product.
URL : /:organizationid/:pimid/api/v0.1/product/:productid
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
productid=[string]
is the ID of the Product to be updated.
Method: GET
Auth required: YES
Authorization required: read
Response headers:
Last-Modified:
Timestamp when the product was last modified
Response body example
Get Multiple
This returns a represenation of a product.
URL : /:organizationid/:pimid/api/v0.1/products
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
Method: POST
Auth required: YES
Authorization required: read
Request example
Response example
Success Response
Code: 200 OK
Search
This returns a list of products matching the filters given
URL : /:organizationid/:pimid/api/v0.1/productsearch
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
Optional: limit=[int]
max number of results pr. page
Optional: includeResources=[bool]
include resource-references in result (Default: false)
Optional: includeLocalized=[bool]
include localized attributes in result (Default: false)
Optional: lastoffsetid=[string]
returns items with a id
"greater" than this value. This can be used to page through results. A response with more items available than in the list, will return nextoffset
-value to be used as lastoffsetid
in next request. No default value - not supplying a value will omit this condition.
Method: POST
Auth required: YES
Authorization required: read
Body Parameters:
filter:
Filter query (Not documented yet)
projection:
Array of attributes to include. If not specified, all attributes are returned
excludeChannels:
Array of channels to exlude. A product is excluded if at least of of the channels specified are present.
includeChannels:
Array of channels to include. A product is included if at least of of the channels specified are present on the product. If not given, all products are returned.
localizedProjection:
Array of localized-attributes to include. If not specified, all attributes are returned (can only be specified if includeLocalized parameter is true)
projectedLocales:
List of locales included (can only be specified if includeLocalized parameter is true). If not specified, all locales are included.
Request example
Success Response
Code: 200 OK
Patch Single
URL : /:organizationid/:pimid/api/v0.1/product/:productid
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
productid=[string]
is the ID of the Product to be updated.
Method: PATCH
Auth required: YES
Authorization required: write
Request headers:
If-Unmodified-Since:
Content of the Last-Modified
of the GET-call
X-BatchId:
batchid if running a "full" import and afterwards deleting all entries without matching batchid
Only the properties in the request are modified. If properties are included but has no value, it's value will be deleted, so make sure to only include properties that are to be modified.
Only attributedata attributes can be modified.
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: Referencing an invalid product. Code: 404 NOT FOUND
Condition: Update cannot be processed due to read-only, erp-mapped field etc. Code: 422 UNPROCESSABLE ENTITY
Condition: The product was modified since GET/If-Modified-Since timestamp Code: 412 PRECONDITION FAILED
Patch Multiple
URL : /:organizationid/:pimid/api/v0.1/products
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
Method: PATCH
Request headers:
X-BatchId:
batchid if running a "full" import and afterwards deleting all entries without matching batchid
Auth required: YES
Authorization required: write
Only the properties in the request are modified. If properties are included but has no value, it's value will be deleted, so make sure to only include properties that are to be modified.
Only attributedata attributes can be modified.
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: Referencing one or more invalid products. Code: 400 BAD REQUEST
Condition: Update cannot be processed due to read-only, erp-mapped field etc. Code: 422 UNPROCESSABLE ENTITY
Add Channel
URL : /:organizationid/:pimid/api/v0.1/product/:productid/channels
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
productid=[string]
is the ID of the Product to be updated.
Method: POST
Auth required: YES
Authorization required: write
Request headers:
If-Unmodified-Since:
Content of the Last-Modified
of the GET-call
X-BatchId:
batchid if running a "full" import and afterwards deleting all entries without matching batchid
Add the requested channels to the product.
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: Referencing an invalid product. Code: 404 NOT FOUND
Condition: Update cannot be processed due to read-only, erp-mapped field etc. Code: 422 UNPROCESSABLE ENTITY
Condition: The product was modified since GET/If-Modified-Since timestamp Code: 412 PRECONDITION FAILED
Condition: Product already has one of the requested channels. Code: 409 CONFLICT
Remove Channel
URL : /:organizationid/:pimid/api/v0.1/product/:productid/channels
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
productid=[string]
is the ID of the Product to be updated.
Method: DELETE
Auth required: YES
Authorization required: write
Request headers:
If-Unmodified-Since:
Content of the Last-Modified
of the GET-call
X-BatchId:
batchid if running a "full" import and afterwards deleting all entries without matching batchid
Remove the channels in the request from the product.
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: Referencing an invalid product. Code: 404 NOT FOUND
Condition: Update cannot be processed due to read-only, erp-mapped field etc. Code: 422 UNPROCESSABLE ENTITY
Condition: The product was modified since GET/If-Modified-Since timestamp Code: 412 PRECONDITION FAILED
Condition: Product does not have one of the requested channels. Code: 409 CONFLICT
Add Category
URL : /:organizationid/:pimid/api/v0.1/product/:productid/categoryrelations
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
productid=[string]
is the ID of the Product to be updated.
Method: POST
Auth required: YES
Authorization required: write
Request headers:
If-Unmodified-Since:
Content of the Last-Modified
of the GET-call
X-BatchId:
batchid if running a "full" import and afterwards deleting all entries without matching batchid
Add the requested categories to the product.
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: Referencing an invalid product. Code: 404 NOT FOUND
Condition: Update cannot be processed due to read-only, erp-mapped field etc. Code: 422 UNPROCESSABLE ENTITY
Condition: The product was modified since GET/If-Modified-Since timestamp Code: 412 PRECONDITION FAILED
Condition: Product already has one of the requested channels. Code: 409 CONFLICT
Remove Category
URL : /:organizationid/:pimid/api/v0.1/product/:productid/categoryrelations
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
productid=[string]
is the ID of the Product to be updated.
Method: DELETE
Auth required: YES
Authorization required: write
Request headers:
If-Unmodified-Since:
Content of the Last-Modified
of the GET-call
X-BatchId:
batchid if running a "full" import and afterwards deleting all entries without matching batchid
Remove the categories in the request from the product.
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: Referencing an invalid product. Code: 404 NOT FOUND
Condition: Update cannot be processed due to read-only, erp-mapped field etc. Code: 422 UNPROCESSABLE ENTITY
Condition: The product was modified since GET/If-Modified-Since timestamp Code: 412 PRECONDITION FAILED
Condition: Product does not have one of the requested channels. Code: 409 CONFLICT
Create new product
URL : /:organizationid/:pimappid/api/v0.2/product
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimappid=[string]
is the APP ID of the PIM application.
allowrecreate=[bool]
Allow a product to be (re)created even if it exists already and has been "soft"-deleted. All data from existing product will be lost. (Default: false)
Method: POST
Auth required: YES
Authorization required: write
Request headers:
Content-Type: application/json
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: The member email has a conflict with another member Code: 409 CONFLICT
Remove Product
URL : /:organizationid/:pimid/api/v0.2/deleteproducts
URL Parameters:
organizationid=[string]
is the ID of the chainbox.io organization.
pimid=[string]
is the APP ID of the PIM application.
Method: POST
Auth required: YES
Authorization required: write
Request headers:
If-Unmodified-Since:
Content of the Last-Modified
of the GET-call
Remove the products in the request
Request example
Error Responses
Condition: If basic auth header is not present in request or is incorrect. Code: 401 UNAUTHORIZED
Condition: Referencing an invalid product. Code: 404 NOT FOUND
Condition: Update cannot be processed due to read-only, erp-mapped field etc. Code: 422 UNPROCESSABLE ENTITY
Condition: The product was modified since GET/If-Modified-Since timestamp Code: 412 PRECONDITION FAILED
Last updated