Skip to main content
Search Users
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/5/aaa/teams/v2/{team_id}/search \
  --header 'Authorization: <api-key>'
{
  "nextPageToken": 123,
  "totalCount": 123,
  "users": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "userAccountId": 123,
      "userId": "<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 to search within

Query Parameters

username
string

Optional filter by username (partial match supported)

Example:

""

status
enum<string>
Available options:
USER_STATUS_UNSPECIFIED,
USER_STATUS_ACTIVE,
USER_STATUS_INACTIVE
page_size
integer<int64>

Number of results per page

page_token
integer<int64>

Token for pagination to retrieve the next page of results

Response

Response containing a paginated list of users matching the search criteria, along with pagination tokens and total count.

nextPageToken
integer<int64>

Token for the next page of results. Empty if no more pages available.

totalCount
integer<int64>

Total number of users matching the search criteria across all pages

users
User · object[]