POST api/WestcorPayPortal/CheckForAgentFileDuplicates

Checks if filename exists for agency

Request Information

Parameters

NameDescriptionAdditional information
request

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "AgentNumber": "sample string 1",
  "FileName": "sample string 2",
  "Token": "sample string 3",
  "PartnerCode": "sample string 4"
}

application/xml, text/xml

Sample:
<CheckForAgentFileDuplicates_Request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.WestcorPayPortalObjects">
  <PartnerCode>sample string 4</PartnerCode>
  <Token>sample string 3</Token>
  <AgentNumber>sample string 1</AgentNumber>
  <FileName>sample string 2</FileName>
</CheckForAgentFileDuplicates_Request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>