Fetch a list of users associated with the CDO tenant.

GET {{baseUrl}}/v1/users?limit=50&offset=0&q=<string>

Request Params

KeyDatatypeRequiredDescription
limitnumberThe number of results to retrieve.
offsetnumberThe offset of the results retrieved. The CDO Public API uses the offset field to determine the index of the first result retrieved, and will retrieve limit results from the offset specified.
qstringThe query to execute. Use the Lucene Query Syntax to construct your query.

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;count&quot;:&quot;\u003cinteger\u003e&quot;,&quot;limit&quot;:&quot;\u003cinteger\u003e&quot;,&quot;offset&quot;:&quot;\u003cinteger\u003e&quot;,&quot;items&quot;:[{&quot;uid&quot;:&quot;\u003cuuid\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;roles&quot;:[&quot;ROLE_VPN_SESSIONS_MANAGER&quot;,&quot;ROLE_ADMIN&quot;],&quot;apiOnlyUser&quot;:&quot;\u003cboolean\u003e&quot;,&quot;lastSuccessfulLogin&quot;:&quot;\u003cdateTime\u003e&quot;},{&quot;uid&quot;:&quot;\u003cuuid\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;roles&quot;:[&quot;ROLE_SUPER_ADMIN&quot;,&quot;ROLE_SUPER_ADMIN&quot;],&quot;apiOnlyUser&quot;:&quot;\u003cboolean\u003e&quot;,&quot;lastSuccessfulLogin&quot;:&quot;\u003cdateTime\u003e&quot;}]}