API DocsRESTUser service

GetUser

Retrieves a user object.

GET
/api/v2/users/{userId}

Path Parameters

userId
Required
string

The id of the asset to be retrieved. Required.

curl -X GET "<API_URL>/api/v2/users/string" \
  -H "Authorization: Bearer <API_KEY>"

A successful response.

{
  "user": {
    "userId": "string",
    "userName": "string",
    "organizations": [
      {
        "organizationId": "string",
        "organizationName": "string"
      }
    ]
  }
}