API endpoints that enable you to manage users (entities) and user profile databases (entity types).
In addition to reference information for each endpoint, this section of the documentation also includes the following three articles:
Endpoint | Methods |
---|---|
/entity View profile information for the specified user. |
|
/entity.bulkCreate Create multiple user profiles with a single API call. |
|
/entity.count Count the number of user profiles that meet the specified criteria (e.g., all the user profiles that have not been updated since June 1, 2020). |
|
/entity.create Create a user profile.. |
|
/entity.delete Remove a user profile. Note that this operation cannot be undone. |
|
/entity.deleteAccess Remove all access and refresh tokens for the specified user. If the happens, the user will need to reauthenticate before they can do such things as access their user profile. |
|
/entity.find Search for user account (e.g., all the user who live in Canada). |
|
/entity.replace Replace all the attribute values in a user profile with a new set of attribute values. |
|
/entity.update Update specific attribute values in a user profile. |
|
/entityType View detailed information for the specified entity type. |
|
/entityType.addAttribute Add an attribute to an entity type schema. |
|
/entityType.addRule Add a validation data rule to en entity type schema. For example, you might add a rule that limits an attribute to no more than 20 characters. |
|
/entityType.create Create an entity type. |
|
/entityType.deleteAccessSchema Remove an access chema. An access schema defines the subset of attributes to which a client has read or write access. |
|
/entityType.getAccessSchema View the access schema for an entity type. An access schema defines the subset of attributes to which a client has read or write access. |
|
/entityType.list View all your entity types. |
|
/entityType.removeAttribute Delete an attribute from an entity type schema. |
|
/entityType.removeRule Delete a validation rule from an entity type schema. |
|
/entityType.rules View validation rules for an entity type schema. Validation rules help determine the data that can and cannot be stored in an attribute. |
|
/entityType.setAccessSchema Update an access schema for an entity type. An access schema defines the subset of attributes to which a client has read or write access. |
|
/entityType.setAttributeConstraints Update the constraints assigned to an attribute. Constraints impose specific conditions on an attribute; for example, you mark an attribute as required meaning that a user cannot save their user profile unless that attribute has been set to a non-null value. |
|