POST REST/Payments/Bulk/Approve

Request Information

URI Parameters

None.

Body Parameters

BatchProcessModel
NameDescriptionTypeAdditional information
ProcessDate

string

None.

BatchID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProcessDate": "sample string 1",
  "BatchID": 2
}

application/xml, text/xml

Sample:
<BatchProcessModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST.Bulk">
  <BatchID>2</BatchID>
  <ProcessDate>sample string 1</ProcessDate>
</BatchProcessModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BatchProcessModel'.

Response Information

Resource Description

BatchInputResponse
NameDescriptionTypeAdditional information
Reference

string

None.

BatchID

integer

None.

Status

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Reference": "sample string 1",
  "BatchID": 2,
  "Status": "sample string 3",
  "Message": "sample string 4"
}

application/xml, text/xml

Sample:
<BatchInputResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST.Bulk">
  <Message xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST">sample string 4</Message>
  <Status xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST">sample string 3</Status>
  <BatchID>2</BatchID>
  <Reference>sample string 1</Reference>
</BatchInputResponse>