- Delete user and remove identifiable information
Create a new user record
Bulk create new user records (limit 100)
Retrieve a users details
Retrieve a list of users
Update a user record
Deactivate a user record
Restore a deactivated user record
Generate a single-use user login link
Create a user and return a single-use login URL
Restore previously anonymised user
Retrieve bulk users redemption stats
Retrieve a users redemption stats
Delete user and remove id...
Security
BearerAuth
By default the users UID will be maintained, if you wish to remove this you will need to pass a maintain_uid of false. Please note, if you anonymise the UID you will need to retain the record ID returned if the user is to be restored at a later date.
If accessing via an organisation level token you will need to provide an organisation_group_id in order to indicate which group the user belongs to.
POST
curl -i -X POST \
https://propello-cloud.redocly.app/_mock/openapi/v3/user/anonymise/email/john.smith@example.org \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"maintain_uid": true
}'Response
{ "status": 200, "timestamp": "1970-01-30T00:00:00.000000Z", "data": { "id": 987654, "UID": "ABC123", "first_name": null, "last_name": null, "email": null, "created_at": "1970-01-30T00:00:00.000000Z" } }