POST customattributes

Create a new Custom Attribute

Request Information

URI Parameters

None.

Body Parameters

The Custom Attribute object that you want to create.

CustomAttributeCreateUpdateModel
NameDescriptionTypeAdditional information
CustomAttributeName The custom attributes name. string None.

Request Formats

application/json, text/json

Sample:
{
  "CustomAttributeName": "Style"
}

application/xml, text/xml

Sample:
<CustomAttributeCreateUpdateModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CustomAttributeName>Style</CustomAttributeName>
</CustomAttributeCreateUpdateModel>

Response Information

Resource Description

Create a new Custom Attribute

CustomAttributeBaseModel
NameDescriptionTypeAdditional information
CustomAttributeID The ID of the custom attribute. integer None.
CustomAttributeName The custom attributes name. string None.

Response Formats

application/json, text/json

Sample:
{
  "CustomAttributeID": 1,
  "CustomAttributeName": "Style"
}

application/xml, text/xml

Sample:
<CustomAttributeBaseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CustomAttributeID>1</CustomAttributeID>
  <CustomAttributeName>Style</CustomAttributeName>
</CustomAttributeBaseModel>