POST api/WestcorPriorPolicy/RequestImage

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"
  },
  "PolicyNumber": "sample string 1",
  "ImageID": 2
}

application/xml, text/xml

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

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"
  },
  "PolicyNumber": "sample string 1",
  "DocumentName": "sample string 2",
  "DocumentLink": "sample string 3",
  "Base64Image": "sample string 4"
}

application/xml, text/xml

Sample:
<ImageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.WestcorPriorPolicyObjects">
  <Base64Image>sample string 4</Base64Image>
  <DocumentLink>sample string 3</DocumentLink>
  <DocumentName>sample string 2</DocumentName>
  <PolicyNumber>sample string 1</PolicyNumber>
  <ResponseInfo>
    <Code>1</Code>
    <Message>sample string 2</Message>
  </ResponseInfo>
  <SerializeImageBody>true</SerializeImageBody>
</ImageResponse>