get https://app.asana.com/api/1.0/users/
Returns the full user record for the single user with the provided ID.
Responses
Returns the full user record for the single user with the provided ID.
xxxxxxxxxx
curl --request GET \
--url https://app.asana.com/api/1.0/users/user_gid \
--header 'accept: application/json'
xxxxxxxxxx
{
"data": {
"gid": "12345",
"resource_type": "user",
"name": "Greg Sanchez",
"email": "gsanchez@example.com",
"photo": {
"image_21x21": "https://...",
"image_27x27": "https://...",
"image_36x36": "https://...",
"image_60x60": "https://...",
"image_128x128": "https://...",
"image_1024x1024": "https://..."
},
"workspaces": [
{
"gid": "12345",
"resource_type": "workspace",
"name": "My Company Workspace"
}
]
}
}