POST api/transfer/suspend

Move funds to suspense account to another ledger 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 suspend funds data contract supplied with the request.

ProcessSuspendFundsDataContract
NameDescriptionTypeAdditional information
BankAccountId

The unique identifier of the related bank account resource.

integer

None.

Amount

The amount value.

decimal number

None.

LedgerLineId

The unique identifier of the related ledger line resource.

integer

None.

IsAgentCash

Indicates whether this item is agent cash.

boolean

None.

PropertyAccountId

The unique identifier of the related property account resource.

integer

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "BankAccountId": 1,
  "Amount": 2.0,
  "LedgerLineId": 3,
  "IsAgentCash": true,
  "PropertyAccountId": 1
}

Response Information

Resource Description

The response returned after the operation completes.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.