Group Attribute Sets
Last updated
Was this helpful?
Was this helpful?
import requests
url = "https://{commerce_url}/attribute_set/1/attribute_config_groups"
payload={}
headers = {
'Accept': 'application/json',
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text){
"attribute_config_groups":[
{
"attributes": [
"description",
],
"group_name": "Other Attributes Group"
},
{
"attributes": [
"size",
"gender"
],
"group_name": "Variant Attributes Group"
},
{
"attributes": [
"arm_lenght",
],
"group_name": "Ungrouped Attributes"
}
]
}