POST api/ProductAttribute/Add
Request Information
URI Parameters
None.
Body Parameters
ProductAttributeModelName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
Name | string |
Required String length: inclusive between 0 and 50 |
|
FullName | string |
None. |
|
CreatedAt | date |
None. |
|
UpdatedAt | date |
None. |
|
CreatedBy | integer |
None. |
|
UpdatedBy | integer |
None. |
|
ProductAttributeNameID | integer |
None. |
|
ParentID | integer |
None. |
|
ProductAttributeName | string |
None. |
|
DependentAttributeID | integer |
None. |
|
DependentAttribute | string |
None. |
|
IsActive | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID": 1, "Name": "sample string 2", "FullName": "sample string 3", "CreatedAt": "2025-01-22T20:47:27.2866761-06:00", "UpdatedAt": "2025-01-22T20:47:27.2866761-06:00", "CreatedBy": 1, "UpdatedBy": 1, "ProductAttributeNameID": 1, "ParentID": 1, "ProductAttributeName": "sample string 4", "DependentAttributeID": 1, "DependentAttribute": "sample string 5", "IsActive": true }
application/xml, text/xml
Sample:
<ProductAttributeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <CreatedAt>2025-01-22T20:47:27.2866761-06:00</CreatedAt> <CreatedBy>1</CreatedBy> <DependentAttribute>sample string 5</DependentAttribute> <DependentAttributeID>1</DependentAttributeID> <FullName>sample string 3</FullName> <ID>1</ID> <IsActive>true</IsActive> <Name>sample string 2</Name> <ParentID>1</ParentID> <ProductAttributeName>sample string 4</ProductAttributeName> <ProductAttributeNameID>1</ProductAttributeNameID> <UpdatedAt>2025-01-22T20:47:27.2866761-06:00</UpdatedAt> <UpdatedBy>1</UpdatedBy> </ProductAttributeModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ProductAttributeResponseName | Description | Type | Additional information |
---|---|---|---|
ProductAttributeModel | ProductAttributeModel |
None. |
|
ResponseCode | integer |
None. |
|
ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ProductAttributeModel": { "ID": 1, "Name": "sample string 2", "FullName": "sample string 3", "CreatedAt": "2025-01-22T20:47:27.2866761-06:00", "UpdatedAt": "2025-01-22T20:47:27.2866761-06:00", "CreatedBy": 1, "UpdatedBy": 1, "ProductAttributeNameID": 1, "ParentID": 1, "ProductAttributeName": "sample string 4", "DependentAttributeID": 1, "DependentAttribute": "sample string 5", "IsActive": true }, "ResponseCode": 1, "ResponseText": "sample string 2" }
application/xml, text/xml
Sample:
<ProductAttributeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response"> <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode> <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText> <ProductAttributeModel xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <d2p1:CreatedAt>2025-01-22T20:47:27.2866761-06:00</d2p1:CreatedAt> <d2p1:CreatedBy>1</d2p1:CreatedBy> <d2p1:DependentAttribute>sample string 5</d2p1:DependentAttribute> <d2p1:DependentAttributeID>1</d2p1:DependentAttributeID> <d2p1:FullName>sample string 3</d2p1:FullName> <d2p1:ID>1</d2p1:ID> <d2p1:IsActive>true</d2p1:IsActive> <d2p1:Name>sample string 2</d2p1:Name> <d2p1:ParentID>1</d2p1:ParentID> <d2p1:ProductAttributeName>sample string 4</d2p1:ProductAttributeName> <d2p1:ProductAttributeNameID>1</d2p1:ProductAttributeNameID> <d2p1:UpdatedAt>2025-01-22T20:47:27.2866761-06:00</d2p1:UpdatedAt> <d2p1:UpdatedBy>1</d2p1:UpdatedBy> </ProductAttributeModel> </ProductAttributeResponse>