GET api/Enquiry/GetBranchAuthorizers/{BranchCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BranchCode

string

Required

Body Parameters

None.

Response Information

Resource Description

GetBranchAuthorizers
NameDescriptionTypeAdditional information
BranchAuthorizers

Collection of GetBranchAuthorizer

None.

Success

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "BranchAuthorizers": [
    {
      "UserId": "sample string 1",
      "UserEmail": "sample string 2"
    },
    {
      "UserId": "sample string 1",
      "UserEmail": "sample string 2"
    }
  ],
  "Success": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<GetBranchAuthorizers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <Message>sample string 2</Message>
  <Success>true</Success>
  <BranchAuthorizers>
    <GetBranchAuthorizer>
      <UserEmail>sample string 2</UserEmail>
      <UserId>sample string 1</UserId>
    </GetBranchAuthorizer>
    <GetBranchAuthorizer>
      <UserEmail>sample string 2</UserEmail>
      <UserId>sample string 1</UserId>
    </GetBranchAuthorizer>
  </BranchAuthorizers>
</GetBranchAuthorizers>