PUT
/
users
/
{userId}
curl --request PUT \
  --url https://api.gleap.io/v3/users/{userId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "<string>",
  "lastName": "<string>",
  "userRole": "<string>",
  "knewGleapFrom": "<string>",
  "userUsage": "<string>",
  "profileImageUrl": "<string>",
  "completedOnboarding": true,
  "oldpassword": "<string>",
  "available": true,
  "unavailableProjects": [
    "<string>"
  ],
  "notificationPreferences": "<any>",
  "notificationSettings": "<any>"
}'
"<any>"

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200 - application/json

Ok

The response is of type any.