POST Vacation/SearchEmployee/{str}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
str

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ItemIDLabel
NameDescriptionTypeAdditional information
ID

string

None.

Label

string

None.

Info

string

None.

Code

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "sample string 1",
    "Label": "sample string 2",
    "Info": "sample string 3",
    "Code": "sample string 4"
  },
  {
    "ID": "sample string 1",
    "Label": "sample string 2",
    "Info": "sample string 3",
    "Code": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfItemIDLabel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CubesApi.Helper">
  <ItemIDLabel>
    <Code>sample string 4</Code>
    <ID>sample string 1</ID>
    <Info>sample string 3</Info>
    <Label>sample string 2</Label>
  </ItemIDLabel>
  <ItemIDLabel>
    <Code>sample string 4</Code>
    <ID>sample string 1</ID>
    <Info>sample string 3</Info>
    <Label>sample string 2</Label>
  </ItemIDLabel>
</ArrayOfItemIDLabel>