POST api/FetcheStampFile
Request Information
URI Parameters
None.
Body Parameters
eStampRequestData| Name | Description | Type | Additional information |
|---|---|---|---|
| State | string |
Required |
|
| Denomination | integer |
None. |
|
| ReferenceNo | string |
None. |
|
| ClientID | string |
None. |
|
| ClientName | string |
None. |
|
| FirstParty | string |
None. |
|
| SecondParty | string |
None. |
|
| StampType | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"State": "sample string 1",
"Denomination": 2,
"ReferenceNo": "sample string 3",
"ClientID": "sample string 4",
"ClientName": "sample string 5",
"FirstParty": "sample string 6",
"SecondParty": "sample string 7",
"StampType": 8
}
application/xml, text/xml
Sample:
<eStampRequestData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <State>sample string 1</State> <Denomination>2</Denomination> <ReferenceNo>sample string 3</ReferenceNo> <ClientID>sample string 4</ClientID> <ClientName>sample string 5</ClientName> <FirstParty>sample string 6</FirstParty> <SecondParty>sample string 7</SecondParty> <StampType>8</StampType> </eStampRequestData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomReturnObject| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Messages | Collection of string |
None. |
|
| ErrorCode | integer |
None. |
|
| Response | string |
None. |
|
| eStampFileId | integer |
None. |
|
| ReferenceNo | string |
None. |
|
| FirstParty | string |
None. |
|
| SecondParty | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Messages": [
"sample string 1",
"sample string 2"
],
"ErrorCode": 2,
"Response": "sample string 3",
"eStampFileId": 4,
"ReferenceNo": "sample string 5",
"FirstParty": "sample string 6",
"SecondParty": "sample string 7"
}
application/xml, text/xml
Sample:
<CustomReturnObject 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>sample string 3</Response>
<eStampFileId>4</eStampFileId>
<ReferenceNo>sample string 5</ReferenceNo>
<FirstParty>sample string 6</FirstParty>
<SecondParty>sample string 7</SecondParty>
</CustomReturnObject>