POST jxc_api/AssistData/GetLevels

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerLevelListModel
NameDescriptionTypeAdditional information
LevelId

integer

None.

LevelNo

string

None.

LevelName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LevelId": 1,
    "LevelNo": "sample string 2",
    "LevelName": "sample string 3"
  },
  {
    "LevelId": 1,
    "LevelNo": "sample string 2",
    "LevelName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerLevelListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Areas.BaseData.Models">
  <CustomerLevelListModel>
    <LevelId>1</LevelId>
    <LevelName>sample string 3</LevelName>
    <LevelNo>sample string 2</LevelNo>
  </CustomerLevelListModel>
  <CustomerLevelListModel>
    <LevelId>1</LevelId>
    <LevelName>sample string 3</LevelName>
    <LevelNo>sample string 2</LevelNo>
  </CustomerLevelListModel>
</ArrayOfCustomerLevelListModel>