Retrieves information about the specified user.

This helps an integration inspect or validate an individual user before carrying out user-related administration, access checks, or provisioning workflows.

Note: To use this call, you must be a Workspace Administrator, or have any tenant-level access role.

GET

/users/{userId}

ParameterDescription
userId
  • Optional
  • Type: string
  • Description: The user ID
  • Example: 8a8196a55b193fa0015b1e57f3da172c

curl -X GET \
https://api.anaplan.com/2/0/users/{userId} \
-H 'authorization: AnaplanAuthToken {anaplan_auth_token}' \
-H 'Content-Type:application/json'

{
   "meta":{
      "schema":"https://api.anaplan.com/2/0/objects/user"
   },
   "user":{
      "id":"8a8196a55b193fa0015b1e57f3da172c",
      "active":true,
      "email":"a.user@anaplan.com",
      "emailOptIn":true,
      "firstName":"A",
      "lastName":"User",
      "lastLoginDate":"2017-09-07T08:05:37.000+0000"
   },
   "status":{
      "code":200,
      "message":"Success"
   }
}