Attribute sets
Retrieve attribute set information based on given ID
Path parameters
attributeSetIdstringRequiredExample:
(Required)
<integer>Responses
200
OK
application/json
Responseobject
400
Bad Request
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
get
/V1/products/attribute-sets/{attributeSetId}GET /V1/products/attribute-sets/{attributeSetId} HTTP/1.1
Host: {{baseurl}}
Accept: */*
{
"attribute_set_name": "<string>",
"sort_order": "<integer>",
"attribute_set_id": "<integer>",
"entity_type_id": "<integer>",
"extension_attributes": "<object>"
}Save attribute set data
Path parameters
attributeSetIdstringRequiredExample:
(Required)
<string>Header parameters
Content-TypestringOptionalExample:
application/jsonBody
objectOptionalExample:
{"attributeSet":{"attribute_set_name":"<string>","sort_order":"<integer>","attribute_set_id":"<integer>","entity_type_id":"<integer>","extension_attributes":"<object>"}}Responses
200
OK
application/json
Responseobject
400
Bad Request
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
put
/V1/products/attribute-sets/{attributeSetId}PUT /V1/products/attribute-sets/{attributeSetId} HTTP/1.1
Host: {{baseurl}}
Content-Type: application/json
Accept: */*
Content-Length: 169
{
"attributeSet": {
"attribute_set_name": "<string>",
"sort_order": "<integer>",
"attribute_set_id": "<integer>",
"entity_type_id": "<integer>",
"extension_attributes": "<object>"
}
}{
"attribute_set_name": "<string>",
"sort_order": "<integer>",
"attribute_set_id": "<integer>",
"entity_type_id": "<integer>",
"extension_attributes": "<object>"
}Remove attribute set by given ID
Path parameters
attributeSetIdstringRequiredExample:
(Required)
<integer>Responses
200
OK
application/json
Responseobject
400
Bad Request
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
delete
/V1/products/attribute-sets/{attributeSetId}DELETE /V1/products/attribute-sets/{attributeSetId} HTTP/1.1
Host: {{baseurl}}
Accept: */*
trueCreate attribute set from data
Header parameters
Content-TypestringOptionalExample:
application/jsonBody
objectOptionalExample:
{"attributeSet":{"attribute_set_name":"<string>","sort_order":"<integer>","attribute_set_id":"<integer>","entity_type_id":"<integer>","extension_attributes":"<object>"},"skeletonId":"<integer>"}Responses
200
OK
application/json
Responseobject
400
Bad Request
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
post
/V1/products/attribute-setsPOST /V1/products/attribute-sets HTTP/1.1
Host: {{baseurl}}
Content-Type: application/json
Accept: */*
Content-Length: 194
{
"attributeSet": {
"attribute_set_name": "<string>",
"sort_order": "<integer>",
"attribute_set_id": "<integer>",
"entity_type_id": "<integer>",
"extension_attributes": "<object>"
},
"skeletonId": "<integer>"
}{
"attribute_set_name": "<string>",
"sort_order": "<integer>",
"attribute_set_id": "<integer>",
"entity_type_id": "<integer>",
"extension_attributes": "<object>"
}