cURL
curl --request GET \ --url https://api.tally.so/users/me \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "firstName": "<string>", "lastName": "<string>", "fullName": "<string>", "email": "<string>", "avatarUrl": "<string>", "organizationId": "<string>", "isDeleted": true, "hasTwoFactorEnabled": true, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "subscriptionPlan": "FREE" }
Returns information about the current authenticated user.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
User information retrieved successfully
The response is of type object.
object