- Update a user record
Create a new user record
Bulk create new user records (limit 100)
Retrieve a users details
Retrieve a list of users
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
Delete user and remove identifiable information
Restore previously anonymised user
Retrieve bulk users redemption stats
Retrieve a users redemption stats
Update a user record
Security
BearerAuth
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/update/email/john.smith@example.org \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"organisation_group_id": 1,
"email": "john.smith@example.org",
"first_name": "John",
"last_name": "Smith",
"company_name": "Parisian Inc",
"UID": "ABC123",
"meta": {
"sales": 5,
"location": "London"
}
}'Response
{ "status": 200, "timestamp": "1970-01-30T00:00:00.000000Z", "data": { "id": 987654, "UID": "ABC123", "first_name": "John", "last_name": "Smith", "email": "john.smith@example.org", "status": "Active", "created_at": "1970-01-30T00:00:00.000000Z" } }