GET api/account/users/search?name={name}

Returns a list of users in one's own organization, filtered by partial name and/or surname.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TextValueDTO
NameDescriptionTypeAdditional information
text

Text value.

string

None.

value

ID uniquiely identifying the text value.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "text": "sample string 1",
    "value": 2
  },
  {
    "text": "sample string 1",
    "value": 2
  }
]

text/html

Sample:
[{"text":"sample string 1","value":2},{"text":"sample string 1","value":2}]

application/xml, text/xml

Sample:
<ArrayOfTextValueDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.WebAPI.DTOs">
  <TextValueDTO>
    <text>sample string 1</text>
    <value>2</value>
  </TextValueDTO>
  <TextValueDTO>
    <text>sample string 1</text>
    <value>2</value>
  </TextValueDTO>
</ArrayOfTextValueDTO>