cURL
curl --request GET \ --url https://app.getcensus.com/api/v1/users/{user_id} \ --header 'Authorization: Bearer <token>'
{ "status": "success", "data": { "id": 123, "email": "[email protected]", "created_at": "2023-08-20T10:00:00Z", "role": "admin" } }
Retrieve details of a specific user.
Bearer authorization using your Personal Access Token. Generate a new PAT on your user settings page.
ID of the user
success
The outcome of the request
Show child attributes
Unique identifier for the user.
User's email address.
"[email protected]"
Timestamp of user account creation.
"2023-08-20T10:00:00Z"
User's role in the organization.
admin
member
"admin"
Was this page helpful?