POST api/WestcorPayPortal/CheckeRemitAgent
Check if agent uses eRemit
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| req |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"AgentNumber": "sample string 1",
"Token": "sample string 2",
"PartnerCode": "sample string 3"
}
application/xml, text/xml
Sample:
<CheckeRemitAgent_Request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.WestcorPayPortalObjects"> <PartnerCode>sample string 3</PartnerCode> <Token>sample string 2</Token> <AgentNumber>sample string 1</AgentNumber> </CheckeRemitAgent_Request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{
"NeweRemitAgent": "sample string 1",
"AgentNumber": "sample string 2",
"Active": true,
"ActiveDate": "2025-11-20T13:19:29.9683309+00:00"
}
application/xml, text/xml
Sample:
<CheckeRemitAgent_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.WestcorPayPortalObjects"> <Active>true</Active> <ActiveDate>2025-11-20T13:19:29.9683309+00:00</ActiveDate> <AgentNumber>sample string 2</AgentNumber> <NeweRemitAgent>sample string 1</NeweRemitAgent> </CheckeRemitAgent_Result>