POST api/transfer/contra

Contra funds between ledgers Processes this transfer API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The process contra payment data contract supplied with the request.

ProcessContraPaymentDataContract
NameDescriptionTypeAdditional information
SourceBankAccountId

The unique identifier of the related source bank account resource.

integer

None.

RecipientBankAccountId

The unique identifier of the related recipient bank account resource.

integer

None.

Amount

The amount value.

decimal number

None.

Reason

The reason value.

string

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "SourceBankAccountId": 1,
  "RecipientBankAccountId": 2,
  "Amount": 3.0,
  "Reason": "sample string 4"
}

Response Information

Resource Description

The response returned after the operation completes.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.