POST api/Permissions/Reports/OrganizationUserAccess
Searches for organization users matching the provided criteria and returns each user's client assignments.
Request Information
URI Parameters
None.
Body Parameters
The organization user access search criteria model.
ESignSystems.SmartSAFE.Models.Security.OrganizationUserAccessSearchCriteriaModelName | Description | Type | Additional information |
---|---|---|---|
RoleName |
Gets or sets the user role to search by. |
string |
Max length: 256 |
ClientId |
Gets or sets property to search by client identifier. |
integer |
None. |
OrganizationId |
Gets or sets the OrganizationId. |
integer |
None. |
FirstName |
Gets or sets property to search by first name. |
string |
Max length: 50 |
LastName |
Gets or sets property to search by last name. |
string |
Max length: 50 |
Username |
Gets or sets property to search by user name. |
string |
Max length: 256 |
Gets or sets property to search by email address. |
string |
Max length: 256 |
|
Active |
Gets or sets a value indicating whether to search only for active users. |
boolean |
None. |
PageSize |
Gets or sets the number of rows in the page. |
integer |
Range: inclusive between 1 and 2147483647 |
PageOffset |
Gets or sets the offset page to return. |
integer |
None. |
Request Formats
application/json, text/json
{ "RoleName": "sample string 1", "ClientId": 1, "OrganizationId": 1, "FirstName": "sample string 2", "LastName": "sample string 3", "Username": "sample string 4", "Email": "sample string 5", "Active": true, "PageSize": 1, "PageOffset": 6 }
application/xml, text/xml
<OrganizationUserAccessSearchCriteriaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Security"> <PageOffset xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">6</PageOffset> <PageSize xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">1</PageSize> <Active>true</Active> <ClientId>1</ClientId> <Email>sample string 5</Email> <FirstName>sample string 2</FirstName> <LastName>sample string 3</LastName> <OrganizationId>1</OrganizationId> <Username>sample string 4</Username> <RoleName>sample string 1</RoleName> </OrganizationUserAccessSearchCriteriaModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
List of results in the form of a dictionary.
Collection of Dictionary of string [key] and Object [value]Response Formats
application/json, text/json
[ { "sample string 1": {}, "sample string 3": {} }, { "sample string 1": {}, "sample string 3": {} } ]
application/xml, text/xml
<ArrayOfArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <ArrayOfKeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 1</Key> <Value /> </KeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 3</Key> <Value /> </KeyValueOfstringanyType> </ArrayOfKeyValueOfstringanyType> <ArrayOfKeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 1</Key> <Value /> </KeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 3</Key> <Value /> </KeyValueOfstringanyType> </ArrayOfKeyValueOfstringanyType> </ArrayOfArrayOfKeyValueOfstringanyType>