Skip to content

Users

Use the Users resource to create, retrieve, list, and update user accounts within the SecurityPro Access API.

Endpoint

POST /users

{
"email": "maya.chen@example.com",
"first_name": "Maya",
"last_name": "Chen",
"status": "active"
}
{
"id": "usr_1024",
"email": "maya.chen@example.com",
"first_name": "Maya",
"last_name": "Chen",
"status": "active",
"created_at": "2026-03-01T10:15:22Z"
}

Endpoint

GET /users/{user_id}

Example:

Terminal window
curl https://sandbox-api.securitypro.dev/v1/users/usr_1024 \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Endpoint

GET /users

ParameterTypeDescription
statusstringFilter by status
pageintegerPage number
limitintegerNumber of records per page
emailstringFilter by email

Example:

GET /users?status=active&page=1&limit=25

Endpoint

PATCH /users/{user_id}

{
"status": "suspended"
}