GET jxc_api/DDL/GetDepartment?kw={kw}&offsetStop={offsetStop}&showDisable={showDisable}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
kw

string

Required

offsetStop

string

Required

showDisable

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

DDLListOfDDLDepartment
NameDescriptionTypeAdditional information
OffsetStop

string

None.

Items

Collection of DDLDepartment

None.

Response Formats

application/json, text/json

Sample:
{
  "OffsetStop": "sample string 1",
  "Items": [
    {
      "Id": 1,
      "No": "sample string 2",
      "Name": "sample string 3"
    },
    {
      "Id": 1,
      "No": "sample string 2",
      "Name": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<DDLListOfDDLDepartmentJYhYqFqe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Areas.Framework.Models">
  <Items>
    <DDLDepartment>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <No>sample string 2</No>
    </DDLDepartment>
    <DDLDepartment>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <No>sample string 2</No>
    </DDLDepartment>
  </Items>
  <OffsetStop>sample string 1</OffsetStop>
</DDLListOfDDLDepartmentJYhYqFqe>