POST api/users/filter/company?RqUID={RqUID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
RqUID | string |
None. |
Body Parameters
RestUserFilterDTOName | Description | Type | Additional information |
---|---|---|---|
WorkstreamId | integer |
None. |
|
ClaimsActive | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "WorkstreamId": 1, "ClaimsActive": true }
application/xml, text/xml
Sample:
<RestUserFilterDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GtMotive.GtGlobal.Common.DTO.Rest.User"> <ClaimsActive>true</ClaimsActive> <WorkstreamId>1</WorkstreamId> </RestUserFilterDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RestListResponseDTOOfRestUserShortDTOName | Description | Type | Additional information |
---|---|---|---|
Count | integer |
None. |
|
List | Collection of RestUserShortDTO |
None. |
|
RqUID | string |
None. |
|
Code | string |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Count": 1, "List": [ { "Id": 1, "UserName": "sample string 2", "FullName": "sample string 3" }, { "Id": 1, "UserName": "sample string 2", "FullName": "sample string 3" } ], "RqUID": "sample string 2", "Code": "sample string 3", "Message": "sample string 4" }
application/xml, text/xml
Sample:
<RestListResponseDTOOfRestUserShortDTOyHuT0bWn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GtMotive.GtGlobal.Common.DTO.Rest.Shared"> <Code>sample string 3</Code> <Message>sample string 4</Message> <RqUID>sample string 2</RqUID> <Count>1</Count> <List xmlns:d2p1="http://schemas.datacontract.org/2004/07/GtMotive.GtGlobal.Common.DTO.Rest.User"> <d2p1:RestUserShortDTO> <d2p1:FullName>sample string 3</d2p1:FullName> <d2p1:Id>1</d2p1:Id> <d2p1:UserName>sample string 2</d2p1:UserName> </d2p1:RestUserShortDTO> <d2p1:RestUserShortDTO> <d2p1:FullName>sample string 3</d2p1:FullName> <d2p1:Id>1</d2p1:Id> <d2p1:UserName>sample string 2</d2p1:UserName> </d2p1:RestUserShortDTO> </List> </RestListResponseDTOOfRestUserShortDTOyHuT0bWn>