POST api/TaxServices/Order

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Login": {
    "Username": "sample string 1",
    "Password": "sample string 2"
  },
  "OrderID": 1
}

application/xml, text/xml

Sample:
<GetOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.TaxServicesObjects">
  <Login>
    <Password>sample string 2</Password>
    <SerializeSensitiveInfo>true</SerializeSensitiveInfo>
    <Username>sample string 1</Username>
  </Login>
  <OrderID>1</OrderID>
</GetOrderRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "ResponseInfo": {
    "Code": 1,
    "Message": "sample string 2"
  },
  "OrderData": {}
}

application/xml, text/xml

Sample:
<GetOrderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.TaxServicesObjects">
  <OrderData />
  <ResponseInfo>
    <Code>1</Code>
    <Message>sample string 2</Message>
  </ResponseInfo>
</GetOrderResponse>