POST api/ManageXNCodes
Request Information
URI Parameters
None.
Body Parameters
JsonObjectCheck| Name | Description | Type | Additional information |
|---|---|---|---|
| ArrXNCode | Collection of integer |
None. |
|
| ParentCompanyClientID | integer |
None. |
|
| CompanyClientID | integer |
None. |
|
| SysName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ArrXNCode": [
1,
2
],
"ParentCompanyClientID": 1,
"CompanyClientID": 2,
"SysName": "sample string 3"
}
application/xml, text/xml
Sample:
<JsonObjectCheck xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
<ArrXNCode xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</ArrXNCode>
<CompanyClientID>2</CompanyClientID>
<ParentCompanyClientID>1</ParentCompanyClientID>
<SysName>sample string 3</SysName>
</JsonObjectCheck>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Status| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnCode | integer |
None. |
|
| ObjectReturn | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ReturnCode": 1,
"ObjectReturn": {}
}
application/xml, text/xml
Sample:
<Status xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entities.Common"> <ObjectReturn /> <ReturnCode>1</ReturnCode> </Status>