Search users
Returns a list of users from the tenant that match all the provided search criteria (all criteria are optional).
Analytic events
- USER_SEARCH_START
- USER_SEARCH_SUCCESS
- USER_SEARCH_FAIL
Request Body schema: application/jsonrequired
The search criteria
Users retrieved
Bad Request. The request was malformed or missing required parameters.
- Payload
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
{- "claims": {
- "given_name": "Jamie",
- "address": {
- "street_name": "Queen Street"
}
}, - "authenticationProvider": {
- "providerId": "41458e5a-9092-40b7-9a26-d4eb43c5792f",
- "subjectId": "example-university-oauth2|123456789"
}, - "limit": 100,
- "cursor": "Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1h"
}
- 200
- 400
{- "nextCursor": "Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1hNjZmZmVhNS04NDhlLTQzOWQtODBhNC1kZGE1NWY1M2UzNmM",
- "data": [
- {
- "id": "0c3fad74-a8df-4a2d-8e75-f2d356b413ba",
- "claims": {
- "givenName": "Patrick John",
- "familyName": "Smith",
- "dob": "1990-06-01"
}, - "authenticationProvider": {
- "subjectId": "example-university-oauth2|123456789"
}
}
]
}
Retrieve all users
Returns a list of all users on your tenant.
Analytic events
- USER_RETRIEVE_LIST_START
- USER_RETRIEVE_LIST_SUCCESS
- USER_RETRIEVE_LIST_FAIL
Users retrieved
Bad Request. The request was malformed or missing required parameters.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
- 400
{- "nextCursor": "Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1hNjZmZmVhNS04NDhlLTQzOWQtODBhNC1kZGE1NWY1M2UzNmM",
- "data": [
- {
- "id": "0c3fad74-a8df-4a2d-8e75-f2d356b413ba",
- "claims": {
- "givenName": "Patrick John",
- "familyName": "Smith",
- "dob": "1990-06-01"
}
}
]
}
Retrieve a user
Retrieve an existing user by providing its ID.
- USER_RETRIEVE_START
- USER_RETRIEVE_SUCCESS
- USER_RETRIEVE_FAIL
User retrieved
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
- 400
- 404
{- "id": "0c3fad74-a8df-4a2d-8e75-f2d356b413ba",
- "claims": {
- "givenName": "Patrick John",
- "familyName": "Smith",
- "dob": "1990-06-01"
}
}
Update a User
Updates an existing user by providing its ID.
- USER_UPDATE_START
- USER_UPDATE_SUCCESS
- USER_UPDATE_FAIL
User updated
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
- Payload
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
{- "claims": {
- "givenName": "Patrick John",
- "familyName": "Smith",
- "dob": "1990-06-01"
}
}
- 200
- 400
- 404
{- "id": "0c3fad74-a8df-4a2d-8e75-f2d356b413ba",
- "claims": {
- "givenName": "Patrick John",
- "familyName": "Smith",
- "dob": "1990-06-01"
}
}
Delete a user
Deletes a user and removes any persisted data related to them by providing the user ID.
Any credentials issued to the user remain valid even after the user is deleted.
Analytic events
- USER_DELETE_START
- USER_DELETE_SUCCESS
- USER_DELETE_FAIL
User deleted
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 400
- 404
{- "code": "string",
- "type": "string",
- "message": "string",
- "details": [
- {
- "value": "string",
- "msg": "Invalid value",
- "param": "id",
- "location": "body"
}
]
}
Retrieve all user credentials data
Returns a list of metadata for all the credentials referenced by the provided userId
.
User credentials retrieved
Bad Request. The request was malformed or missing required parameters.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
- 400
{- "data": [
- {
- "id": "552b35fe-a3ed-4c33-8c3c-64810c712323",
- "type": "CourseCredential",
- "profile": "web-semantic"
}
], - "nextCursor": "Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1hNjZmZmVhNS04NDhlLTQzOWQtODBhNC1kZGE1NWY1M2UzNmM"
}