POST api/Cheque/StopCheque

Request Information

URI Parameters

None.

Body Parameters

StopChequeRequest
NameDescriptionTypeAdditional information
AccountNumber

string

None.

BeginChequeNumber

string

None.

NumberofLeaves

string

None.

ReasonCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountNumber": "sample string 1",
  "BeginChequeNumber": "sample string 2",
  "NumberofLeaves": "sample string 3",
  "ReasonCode": "sample string 4"
}

application/xml, text/xml

Sample:
<StopChequeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <AccountNumber>sample string 1</AccountNumber>
  <BeginChequeNumber>sample string 2</BeginChequeNumber>
  <NumberofLeaves>sample string 3</NumberofLeaves>
  <ReasonCode>sample string 4</ReasonCode>
</StopChequeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StopChequeResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<StopChequeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <Message>sample string 2</Message>
  <Success>true</Success>
</StopChequeResponse>