POST api/FileLibraryNo/GetFileLibDropdownList1

Request Information

URI Parameters

None.

Body Parameters

CustomerSelectRequstDto
NameDescriptionTypeAdditional information
parentValue

string

None.

orgCode

string

None.

NoType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "parentValue": "sample string 1",
  "orgCode": "sample string 2",
  "noType": "sample string 3"
}

application/xml, text/xml

Sample:
<CustomerSelectRequstDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Dto">
  <NoType>sample string 3</NoType>
  <orgCode>sample string 2</orgCode>
  <parentValue>sample string 1</parentValue>
</CustomerSelectRequstDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnResultOfListOfSelectItem
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Data

Collection of SelectItem

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "success": true,
  "data": [
    {
      "label": "sample string 1",
      "value": {},
      "parentValue": {},
      "isSelected": true
    },
    {
      "label": "sample string 1",
      "value": {},
      "parentValue": {},
      "isSelected": true
    }
  ],
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<ReturnResultOfArrayOfSelectItemXT0r93n9 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Dto">
    <d2p1:SelectItem>
      <d2p1:IsSelected>true</d2p1:IsSelected>
      <d2p1:Label>sample string 1</d2p1:Label>
      <d2p1:ParentValue />
      <d2p1:Value />
    </d2p1:SelectItem>
    <d2p1:SelectItem>
      <d2p1:IsSelected>true</d2p1:IsSelected>
      <d2p1:Label>sample string 1</d2p1:Label>
      <d2p1:ParentValue />
      <d2p1:Value />
    </d2p1:SelectItem>
  </Data>
  <Message>sample string 3</Message>
  <Status>1</Status>
  <Success>true</Success>
</ReturnResultOfArrayOfSelectItemXT0r93n9>