POST api/SendPayAPI/CheckCustCode?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
CheckCustCodeReq| Name | Description | Type | Additional information |
|---|---|---|---|
| payeeCode | string |
None. |
|
| bcustCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"payeeCode": "sample string 1",
"bcustCode": "sample string 2"
}
application/xml, text/xml
Sample:
<CheckCustCodeReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sendmn.Inbound.Models"> <bcustCode>sample string 2</bcustCode> <payeeCode>sample string 1</payeeCode> </CheckCustCodeReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CommonRes| Name | Description | Type | Additional information |
|---|---|---|---|
| responseCode | string |
None. |
|
| responseDesc | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseCode": "sample string 1",
"responseDesc": "sample string 2"
}
application/xml, text/xml
Sample:
<CommonRes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sendmn.Inbound.Models"> <responseCode>sample string 1</responseCode> <responseDesc>sample string 2</responseDesc> </CommonRes>