cURL
curl --request GET \ --url https://api.example.com/api/ee/user \ --header 'Authorization: Bearer <token>'
{ "name": "<string>", "email": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" }
Fetches profile details for a single organization member by userId. Only organization owners can access this endpoint.
userId
Bearer authentication header of the form Bearer <token>, where <token> is your API key.
Bearer <token>
<token>
The ID of the user to retrieve.
User details.
Was this page helpful?