POST api/GetArticleCodes
Request Information
URI Parameters
None.
Body Parameters
GetArticleCodesInput| Name | Description | Type | Additional information |
|---|---|---|---|
| StateCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"StateCode": "sample string 1"
}
application/xml, text/xml
Sample:
<GetArticleCodesInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <StateCode>sample string 1</StateCode> </GetArticleCodesInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnObjectOfListOfeStampArticalcodedetailsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Messages | Collection of string |
None. |
|
| ErrorCode | integer |
None. |
|
| Response | Collection of eStampArticalcodedetailsDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Messages": [
"sample string 1",
"sample string 2"
],
"ErrorCode": 2,
"Response": [
{
"ArticalCode": "sample string 1",
"ArticalName": "sample string 2"
},
{
"ArticalCode": "sample string 1",
"ArticalName": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<ReturnObjectOfListOfeStampArticalcodedetailsDTO xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<IsSuccess>true</IsSuccess>
<Messages>
<string>sample string 1</string>
<string>sample string 2</string>
</Messages>
<ErrorCode>2</ErrorCode>
<Response>
<eStampArticalcodedetailsDTO>
<ArticalCode>sample string 1</ArticalCode>
<ArticalName>sample string 2</ArticalName>
</eStampArticalcodedetailsDTO>
<eStampArticalcodedetailsDTO>
<ArticalCode>sample string 1</ArticalCode>
<ArticalName>sample string 2</ArticalName>
</eStampArticalcodedetailsDTO>
</Response>
</ReturnObjectOfListOfeStampArticalcodedetailsDTO>