Get details of the current user

Returns the User ID, Team ID, and display name of the user account associated with the provided access token.

GET https://api.canva.com/rest/v1/users/me

This endpoint requires a valid access token and requires no specific scopes.

Authorization: Bearer {token}

Examples for using the /v1/users/me endpoint:

curl --request GET 'https://api.canva.com/rest/v1/users/me' \
--header 'Authorization: Bearer {token}'
sh

If successful, the endpoint returns a 200 response with a JSON body with the following parameters:

#team_userTeamUser

Metadata for the user, consisting of the User ID, Team ID, and display name.

Properties of team_user
#user_idstring
Optional

The ID of the user.

#team_idstring
Optional

The ID of the user's Canva Team.

#display_namestring
Optional

The name of the user as shown in the Canva UI.

{
"team_user": {
"user_id": "auDAbliZ2rQNNOsUl5OLu",
"team_id": "Oi2RJILTrKk0KRhRUZozX",
"display_name": "Jane Doe"
}
}
json