Create, update, or delete a user
curl --request POST \
--url https://my.propops.app/api/users/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "User_001",
"last_name": "Surname_001",
"email": "user001@example.com",
"password": "S3cureP@ssword!",
"account_type_id": 1,
"csrf_token": "abc123def456",
"phone": "07700000001",
"branch_id": 1,
"role_id": 2
}
'{
"success": true,
"message": "Operation completed successfully"
}User Management
Create, update, or delete a user
Manage user accounts. The action field controls the operation:
create_user— Create a new user accountupdate— Update user detailsdelete_user— Delete a user accounttoggle_status— Enable or disable a userupdate_role— Assign a different roleterminate_session— End a specific sessionadd_to_blacklist/remove_from_blacklist— Manage access blacklistbulk_update— Update multiple userscomplete_onboarding— Mark onboarding completescan_user_password— Check password against breach database
Required permission: api.users.users.manage
POST
/
api
/
users
/
users
Create, update, or delete a user
curl --request POST \
--url https://my.propops.app/api/users/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "User_001",
"last_name": "Surname_001",
"email": "user001@example.com",
"password": "S3cureP@ssword!",
"account_type_id": 1,
"csrf_token": "abc123def456",
"phone": "07700000001",
"branch_id": 1,
"role_id": 2
}
'{
"success": true,
"message": "Operation completed successfully"
}Documentation Index
Fetch the complete documentation index at: https://help.propops.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
All API requests must include a valid Bearer token in the Authorization header.
Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.
Example:
Authorization: Bearer a1b2c3d4e5f6...Body
application/json
- Option 1
- Option 2
Example:
"User_001"
Example:
"Surname_001"
Example:
"user001@example.com"
Example:
"S3cureP@ssword!"
1=Staff, 2=Agent, 3=Landlord, 4=Tenant, 5=Contractor
Example:
1
Example:
"abc123def456"
Example:
"07700000001"
Example:
1
Example:
2
⌘I