POST api/Payee/AddPayeeBankInformation

Request Information

URI Parameters

None.

Body Parameters

PayeeAccountInfo
NameDescriptionTypeAdditional information
PayeeName

string

Required

Matching regular expression pattern: ^[a-zA-Z ]*$

Email

string

Required

AccountNo

string

Required

Matching regular expression pattern: [0-9]*\.?[0-9]+

String length: inclusive between 9 and 15

RoutingNo

string

Required

Matching regular expression pattern: [0-9]*\.?[0-9]+

String length: inclusive between 9 and 15

BankName

string

Required

Matching regular expression pattern: ^[a-zA-Z ]*$

AccountType

string

Required

Matching regular expression pattern: ^[a-zA-Z ]*$

AccountName

string

Required

Matching regular expression pattern: ^[a-zA-Z ]*$

ClientKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PayeeName": "sample string 1",
  "Email": "sample string 2",
  "AccountNo": "sample string 3",
  "RoutingNo": "sample string 4",
  "BankName": "sample string 5",
  "AccountType": "sample string 6",
  "AccountName": "sample string 7",
  "ClientKey": "sample string 8"
}

text/html

Sample:
{"PayeeName":"sample string 1","Email":"sample string 2","AccountNo":"sample string 3","RoutingNo":"sample string 4","BankName":"sample string 5","AccountType":"sample string 6","AccountName":"sample string 7","ClientKey":"sample string 8"}

application/xml, text/xml

Sample:
<PayeeAccountInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMailACheck.Web.API.Entities">
  <AccountName>sample string 7</AccountName>
  <AccountNo>sample string 3</AccountNo>
  <AccountType>sample string 6</AccountType>
  <BankName>sample string 5</BankName>
  <ClientKey>sample string 8</ClientKey>
  <Email>sample string 2</Email>
  <PayeeName>sample string 1</PayeeName>
  <RoutingNo>sample string 4</RoutingNo>
</PayeeAccountInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.