POST api/ProductModel/Add
Request Information
URI Parameters
None.
Body Parameters
ProductModelModelName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
Name | string |
Required String length: inclusive between 0 and 150 |
|
DisplayName | string |
None. |
|
ParentName | string |
None. |
|
ParentID | integer |
None. |
|
Description | string |
None. |
|
IsActive | boolean |
None. |
|
CreatedByUserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID": 1, "Name": "sample string 2", "DisplayName": "sample string 3", "ParentName": "sample string 4", "ParentID": 1, "Description": "sample string 5", "IsActive": true, "CreatedByUserID": 1 }
application/xml, text/xml
Sample:
<ProductModelModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <CreatedByUserID>1</CreatedByUserID> <Description>sample string 5</Description> <DisplayName>sample string 3</DisplayName> <ID>1</ID> <IsActive>true</IsActive> <Name>sample string 2</Name> <ParentID>1</ParentID> <ParentName>sample string 4</ParentName> </ProductModelModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ModelResponseName | Description | Type | Additional information |
---|---|---|---|
ProductModel | ProductModelModel |
None. |
|
ResponseCode | integer |
None. |
|
ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ProductModel": { "ID": 1, "Name": "sample string 2", "DisplayName": "sample string 3", "ParentName": "sample string 4", "ParentID": 1, "Description": "sample string 5", "IsActive": true, "CreatedByUserID": 1 }, "ResponseCode": 1, "ResponseText": "sample string 2" }
application/xml, text/xml
Sample:
<ModelResponse 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> <ProductModel xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <d2p1:CreatedByUserID>1</d2p1:CreatedByUserID> <d2p1:Description>sample string 5</d2p1:Description> <d2p1:DisplayName>sample string 3</d2p1:DisplayName> <d2p1:ID>1</d2p1:ID> <d2p1:IsActive>true</d2p1:IsActive> <d2p1:Name>sample string 2</d2p1:Name> <d2p1:ParentID>1</d2p1:ParentID> <d2p1:ParentName>sample string 4</d2p1:ParentName> </ProductModel> </ModelResponse>