GET api/UseBranchNetMaster

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of UserBranchNetMaster
NameDescriptionTypeAdditional information
USERSNAME

string

Required

Max length: 15

BRANCH_CODE

string

Max length: 15

BRANCH_VIEW

boolean

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "USERSNAME": "sample string 1",
    "BRANCH_CODE": "sample string 2",
    "BRANCH_VIEW": true
  },
  {
    "USERSNAME": "sample string 1",
    "BRANCH_CODE": "sample string 2",
    "BRANCH_VIEW": true
  }
]

text/html

Sample:
[{"USERSNAME":"sample string 1","BRANCH_CODE":"sample string 2","BRANCH_VIEW":true},{"USERSNAME":"sample string 1","BRANCH_CODE":"sample string 2","BRANCH_VIEW":true}]

application/xml, text/xml

Sample:
<ArrayOfUserBranchNetMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/webAppApi.Models.Login">
  <UserBranchNetMaster>
    <BRANCH_CODE>sample string 2</BRANCH_CODE>
    <BRANCH_VIEW>true</BRANCH_VIEW>
    <USERSNAME>sample string 1</USERSNAME>
  </UserBranchNetMaster>
  <UserBranchNetMaster>
    <BRANCH_CODE>sample string 2</BRANCH_CODE>
    <BRANCH_VIEW>true</BRANCH_VIEW>
    <USERSNAME>sample string 1</USERSNAME>
  </UserBranchNetMaster>
</ArrayOfUserBranchNetMaster>