Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.69 KB

CatalogAttributeSetManagementV1Api.md

File metadata and controls

56 lines (36 loc) · 1.69 KB

swagger_client.CatalogAttributeSetManagementV1Api

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

catalog_attribute_set_management_v1_create_post

EavDataAttributeSetInterface catalog_attribute_set_management_v1_create_post(body=body)

Create attribute set from data

Example

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)

Parameters

Name Type Description Notes
body Body23 [optional]

Return type

EavDataAttributeSetInterface

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]