Products sets
You may find descriptions of endpoints for work with products sets bellow.
This is the eshop key you receive during onboarding.
Token you get from calling /users/login
Success response
Unauthorized response
GET /v2/products-sets HTTP/1.1
Host: gw.new.skladon.net
authorization: text
x-api-key: text
Accept: */*
{
"statusCode": 200,
"message": "text",
"data": [
{
"setSku": "text",
"products": [
{
"sku": "text",
"count": 1
}
]
}
]
}
This is the eshop key you receive during onboarding.
Token you get from calling /users/login
Success response
Unauthorized response
Not found response
GET /v2/products-sets/{setSku*} HTTP/1.1
Host: gw.new.skladon.net
authorization: text
x-api-key: text
Accept: */*
{
"statusCode": 200,
"message": "text",
"data": {
"setSku": "text",
"products": [
{
"sku": "text",
"count": 1
}
]
}
}
This is the eshop key you receive during onboarding.
Token you get from calling /users/login
Success response
Unauthorized response
POST /v2/products-sets HTTP/1.1
Host: gw.new.skladon.net
authorization: text
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"setSku": "text",
"products": [
{
"sku": "text",
"count": 1
}
]
}
{
"statusCode": 200,
"message": "text",
"data": {
"setSku": "text",
"products": [
{
"sku": "text",
"count": 1
}
]
}
}
This is the eshop key you receive during onboarding.
Token you get from calling /users/login
Success response
Unauthorized response
Not found response
PUT /v2/products-sets/{setSku*} HTTP/1.1
Host: gw.new.skladon.net
authorization: text
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"setSku": "text",
"products": [
{
"sku": "text",
"count": 1
}
]
}
{
"statusCode": 200,
"message": "text",
"data": {
"setSku": "text",
"products": [
{
"sku": "text",
"count": 1
}
]
}
}
This is the eshop key you receive during onboarding.
Token you get from calling /users/login
Success response
Unauthorized response
Not found response
DELETE /v2/products-sets/{setSku*} HTTP/1.1
Host: gw.new.skladon.net
authorization: text
x-api-key: text
Accept: */*
{
"statusCode": 1,
"message": "text",
"data": "text"
}
Last updated