GET api/POSDivisions

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of DivisionMaster
NameDescriptionTypeAdditional information
DIVISION_CODE

string

None.

DESCRIPTION

string

None.

DIVISION

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DIVISION_CODE": "sample string 1",
    "DESCRIPTION": "sample string 2",
    "DIVISION": "sample string 3"
  },
  {
    "DIVISION_CODE": "sample string 1",
    "DESCRIPTION": "sample string 2",
    "DIVISION": "sample string 3"
  }
]

text/html

Sample:
[{"DIVISION_CODE":"sample string 1","DESCRIPTION":"sample string 2","DIVISION":"sample string 3"},{"DIVISION_CODE":"sample string 1","DESCRIPTION":"sample string 2","DIVISION":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfDivisionMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SBSMobileReportingApi.Models">
  <DivisionMaster>
    <DESCRIPTION>sample string 2</DESCRIPTION>
    <DIVISION>sample string 3</DIVISION>
    <DIVISION_CODE>sample string 1</DIVISION_CODE>
  </DivisionMaster>
  <DivisionMaster>
    <DESCRIPTION>sample string 2</DESCRIPTION>
    <DIVISION>sample string 3</DIVISION>
    <DIVISION_CODE>sample string 1</DIVISION_CODE>
  </DivisionMaster>
</ArrayOfDivisionMaster>