GET api/Enquiry/GetTellerDetails/{UserId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserId

string

Required

Body Parameters

None.

Response Information

Resource Description

GetTellerDetails
NameDescriptionTypeAdditional information
TellerName

string

None.

BranchCode

string

None.

Email

string

None.

TellerRole

string

None.

TellerLimit

decimal number

None.

HoldingAccounts

Collection of TellerCurrencyAccount

None.

Successful

boolean

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TellerName": "sample string 1",
  "BranchCode": "sample string 2",
  "Email": "sample string 3",
  "TellerRole": "sample string 4",
  "TellerLimit": 5.0,
  "HoldingAccounts": [
    {
      "Currency": "sample string 1",
      "HoldingAccount": "sample string 2"
    },
    {
      "Currency": "sample string 1",
      "HoldingAccount": "sample string 2"
    }
  ],
  "Successful": true,
  "ResponseMessage": "sample string 7"
}

application/xml, text/xml

Sample:
<GetTellerDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <BranchCode>sample string 2</BranchCode>
  <Email>sample string 3</Email>
  <HoldingAccounts>
    <TellerCurrencyAccount>
      <Currency>sample string 1</Currency>
      <HoldingAccount>sample string 2</HoldingAccount>
    </TellerCurrencyAccount>
    <TellerCurrencyAccount>
      <Currency>sample string 1</Currency>
      <HoldingAccount>sample string 2</HoldingAccount>
    </TellerCurrencyAccount>
  </HoldingAccounts>
  <ResponseMessage>sample string 7</ResponseMessage>
  <Successful>true</Successful>
  <TellerLimit>5</TellerLimit>
  <TellerName>sample string 1</TellerName>
  <TellerRole>sample string 4</TellerRole>
</GetTellerDetails>