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

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 where the users will be created

Body

application/json
onboardingMode
enum<string>
Available options:
ONBOARDING_MODE_UNSPECIFIED,
ONBOARDING_MODE_INVITE_LINK,
ONBOARDING_MODE_NO_INVITE
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

Empty response indicating successful processing of all user creation and invitation requests. Ensure failures are returned via gRPC status codes.