[{"label":"Latest (v1.0)","version":"latest"}]
csp

Search Organization Clients By Role Names

Description

Search all clients who have at least one of the specified roles and/or resource.
Search by resource can be exact match or by resource starting with given term. At most one of the filters resource or resourceStartsWith may be provided.
For all clients found by these search criteria the result contains all clients roles, no matter if they are part of the search criteria or not.
To search by resource starting with given term provide resourceStartsWith.
If resource is empty then unscoped role assignments will be returned.
When role is provided and resource is null all role assignments will be returned.
Paginated results - by default start index of results is 1 and default number of search results per page is 15.

Access Policy

Role User Accounts Service Accounts (Client Credentials Applications)
Organization Admin ✔️
Organization Owner ✔️
Developer ✔️

Request

Request

URL

URL


post
https://{api_host}/csp/gateway/am/api/orgs/{orgId}/oauth-apps/search
Copy

Path Parameters

Path Parameters

string
orgId Required

Unique identifier (GUID) of the organization.

Parameter Serialization Style: SIMPLE Explode:false

Query Parameters

Query Parameters

boolean
filterResults Optional

Indicates if the response should be filtered by search parameters from the request: resource, resourceStartsWith and roles names (default: false).

Parameter Serialization Style: FORM Explode:true

Request Body

Request Body

SearchClientsByRoleNamesRequest of mimetype application/json Required
{
	"pageLimit": 0,
	"pageStart": 0,
	"resource": "string",
	"resourceStartsWith": "string",
	"rolesSearchTerm": {
		"customRoles": [
			{
				"roleName": "string"
			}
		],
		"orgRoles": [
			{
				"roleName": "string"
			}
		],
		"serviceRoles": [
			{
				"serviceDefinitionId": "string",
				"serviceRoles": [
					{
						"roleName": "string"
					}
				]
			}
		]
	},
	"searchType": "EXACT_MATCH"
}
integer as int32
pageLimit Optional

Maximum number to return in response. Default value is 200.


integer as int32
pageStart Optional

Start index for querying. Default value is 1.


string
resource Optional

Resource to search for resource-scoped role assignments.


string
resourceStartsWith Optional

Resource to search for resource-scoped role assignments starting with given term. This field is deprecated. Consider using “resource” along with “searchType”.


rolesSearchTerm Optional

Defines the roles properties which are used for search.


string
searchType Optional

Defines the searching capability of the “resource” field value.

Possible values are: EXACT_MATCHCONTAINSSTARTS_WITHENDS_WITH

Authentication

Authentication

This operation uses the following authentication methods.

Response

Response

Response Body

Response Body

200 OK

Returns PagedPostResponseExpandedAuthClientDto of type application/json
{
    "itemsPerPage": 25,
    "startIndex": 5,
    "totalResults": 2000
}
integer as int32
itemsPerPage Optional

Number of items per page.


results Optional

Partial list of returned results.


integer as int32
startIndex Optional

Start index of the results.


integer as int32
totalResults Optional

Total number of results if available

Errors

Errors

CspErrorResponse
400

Invalid request body


CspErrorResponse
401

The user is not authorized to use the API


CspErrorResponse
403

The user is forbidden to use the API


CspErrorResponse
404

Organization not found


CspErrorResponse
409

The request could not be processed due to a conflict


CspErrorResponse
429

The user has sent too many requests


CspErrorResponse
500

An unexpected error has occurred while processing the request

Code Samples

Code Samples

cURL Command

curl -X POST -H "Content-Type: application/json" -d '{"pageLimit":0,"pageStart":0,"resource":"string","resourceStartsWith":"string","rolesSearchTerm":{"customRoles":[{"roleName":"string"}],"orgRoles":[{"roleName":"string"}],"serviceRoles":[{"serviceDefinitionId":"string","serviceRoles":[{"roleName":"string"}]}]},"searchType":"EXACT_MATCH"}' https://{api_host}/csp/gateway/am/api/orgs/{orgId}/oauth-apps/search


Feedback

Was this page helpful?