Skip to main content
Update Users
curl --request PUT \
  --url https://api.coralogix.com/mgmt/openapi/5/aaa/teams/v2/{team_id}/members \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userAccountId": 123,
  "userTemplate": {
    "accessType": {
      "accessType": "<string>",
      "permanentAccess": {}
    },
    "allowedLoginMode": [],
    "firstName": "<string>",
    "lastName": "<string>",
    "username": "<string>"
  }
}
'
{
  "userAccountIds": [
    123
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.coralogix.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

team_id
integer<int64>
required

Team ID containing the users to update

Body

application/json
userAccountId
integer<int64>

User account ID of the user to update

userTemplate
UserTemplate · object

Template containing all user properties that can be set when creating or updating a user. Includes personal information, status, authentication methods, and access duration.

Response

Response confirming the successful update of users. Contains the user account IDs of all users that were updated.

userAccountIds
integer<int64>[]

List of user account IDs for the successfully updated users