POST api/Receipts/PostWithdrawalAbacus

Request Information

URI Parameters

None.

Body Parameters

Withdrawal
NameDescriptionTypeAdditional information
ID

integer

None.

CustomerId

integer

Required

SavingsAccountId

integer

Required

BankAccountId

integer

Required

Amount

decimal number

Required

Reference

string

None.

FasterPaymentApi

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CustomerId": 1,
  "SavingsAccountId": 2,
  "BankAccountId": 3,
  "Amount": 4.0,
  "Reference": "sample string 5",
  "FasterPaymentApi": true
}

application/xml, text/xml

Sample:
<Withdrawal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Abacus1._8_Api.Models">
  <Amount>4</Amount>
  <BankAccountId>3</BankAccountId>
  <CustomerId>1</CustomerId>
  <FasterPaymentApi>true</FasterPaymentApi>
  <ID>1</ID>
  <Reference>sample string 5</Reference>
  <SavingsAccountId>2</SavingsAccountId>
</Withdrawal>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.