POST api/Transfer/GetBeneficiary

Request Information

URI Parameters

None.

Body Parameters

CustomerPhoneparam
NameDescriptionTypeAdditional information
phone

string

None.

StartDate

string

None.

EndDate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "phone": "sample string 1",
  "StartDate": "sample string 2",
  "EndDate": "sample string 3"
}

application/xml, text/xml

Sample:
<CustomerPhoneparam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.RequestObjs">
  <EndDate>sample string 3</EndDate>
  <StartDate>sample string 2</StartDate>
  <phone>sample string 1</phone>
</CustomerPhoneparam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BeneficiaryResponsedata
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

BeneficiaryList

Collection of BeneficiaryDetails

None.

Response Formats

application/json, text/json

Sample:
{
  "Responsecode": "sample string 1",
  "ResponseDescription": "sample string 2",
  "BeneficiaryList": [
    {
      "AccountNumber": "sample string 1",
      "AccountName": "sample string 2",
      "BankSortCode": "sample string 3",
      "BankName": "sample string 4",
      "Type": "sample string 5"
    },
    {
      "AccountNumber": "sample string 1",
      "AccountName": "sample string 2",
      "BankSortCode": "sample string 3",
      "BankName": "sample string 4",
      "Type": "sample string 5"
    }
  ]
}

application/xml, text/xml

Sample:
<BeneficiaryResponsedata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.ResponseObjs">
  <BeneficiaryList>
    <BeneficiaryDetails>
      <AccountName>sample string 2</AccountName>
      <AccountNumber>sample string 1</AccountNumber>
      <BankName>sample string 4</BankName>
      <BankSortCode>sample string 3</BankSortCode>
      <Type>sample string 5</Type>
    </BeneficiaryDetails>
    <BeneficiaryDetails>
      <AccountName>sample string 2</AccountName>
      <AccountNumber>sample string 1</AccountNumber>
      <BankName>sample string 4</BankName>
      <BankSortCode>sample string 3</BankSortCode>
      <Type>sample string 5</Type>
    </BeneficiaryDetails>
  </BeneficiaryList>
  <ResponseDescription>sample string 2</ResponseDescription>
  <Responsecode>sample string 1</Responsecode>
</BeneficiaryResponsedata>