cURL
curl --request GET \ --url https://app.getcensus.com/api/v1/users/{user_id} \ --header 'Authorization: Bearer <token>'
{ "status": "success", "data": { "id": 123, "email": "john.doe@example.com", "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 response is of type object.
object
Was this page helpful?