All URIs are relative to http://localhost/rest/default
Method | HTTP request | Description |
---|---|---|
catalog_attribute_set_management_v1_create_post | POST /V1/products/attribute-sets |
EavDataAttributeSetInterface catalog_attribute_set_management_v1_create_post(body=body)
Create attribute set from data
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.CatalogAttributeSetManagementV1Api()
body = swagger_client.Body23() # Body23 | (optional)
try:
api_response = api_instance.catalog_attribute_set_management_v1_create_post(body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling CatalogAttributeSetManagementV1Api->catalog_attribute_set_management_v1_create_post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | Body23 | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]