GET api/CorporateLounge/GetAccount/{AccountNumber}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AccountNumber

string

Required

Body Parameters

None.

Response Information

Resource Description

GetAcctResponse
NameDescriptionTypeAdditional information
Account

GetAcctAccount

None.

ResponseCode

string

None.

ResponseDescription

string

None.

TotalAccounts

string

None.

NoOfPages

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Account": {
    "AccountStatus": "sample string 1",
    "AccountName": "sample string 2",
    "AccountNumber": "sample string 3",
    "InstitutionCode": "sample string 4"
  },
  "ResponseCode": "sample string 1",
  "ResponseDescription": "sample string 2",
  "TotalAccounts": "sample string 3",
  "NoOfPages": "sample string 4"
}

application/xml, text/xml

Sample:
<GetAcctResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <NoOfPages>sample string 4</NoOfPages>
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseDescription>sample string 2</ResponseDescription>
  <TotalAccounts>sample string 3</TotalAccounts>
  <Account>
    <AccountName>sample string 2</AccountName>
    <AccountNumber>sample string 3</AccountNumber>
    <InstitutionCode>sample string 4</InstitutionCode>
    <AccountStatus>sample string 1</AccountStatus>
  </Account>
</GetAcctResponse>