Skip to main content
GET
/
api
/
v2
/
users
/
{userId}
GetUser
curl --request GET \
  --url https://your-sift-api-url.com/api/v2/users/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "user": {
    "userId": "<string>",
    "userName": "<string>",
    "organizations": [
      {
        "organizationId": "<string>",
        "organizationName": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

userId
string
required

The id of the asset to be retrieved. Required.

Response

A successful response.

user
object