POST api/GetEstampingFinalAmount

Request Information

URI Parameters

None.

Body Parameters

EtampingPaymentInfo
NameDescriptionTypeAdditional information
ConsiderationPirce

string

None.

ArticleCode

string

None.

StateCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ConsiderationPirce": "sample string 1",
  "ArticleCode": "sample string 2",
  "StateCode": "sample string 3"
}

application/xml, text/xml

Sample:
<EtampingPaymentInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ConsiderationPirce>sample string 1</ConsiderationPirce>
  <ArticleCode>sample string 2</ArticleCode>
  <StateCode>sample string 3</StateCode>
</EtampingPaymentInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnObjectOfEtampingPaymentResponse
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Messages

Collection of string

None.

ErrorCode

integer

None.

Response

EtampingPaymentResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Messages": [
    "sample string 1",
    "sample string 2"
  ],
  "ErrorCode": 2,
  "Response": {
    "StampdutyAmount": "sample string 1",
    "FinalAmount": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<ReturnObjectOfEtampingPaymentResponse 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>
    <StampdutyAmount>sample string 1</StampdutyAmount>
    <FinalAmount>sample string 2</FinalAmount>
  </Response>
</ReturnObjectOfEtampingPaymentResponse>