Documentation Index

Fetch the complete documentation index at: https://support.perimeter81.com/llms.txt

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

Important Notice: This Perimeter 81 documentation site is being deprecated and will be permanently removed on July 26, 2026.

Please use the latest Check Point Documentation Portal for current product documentation and updates. Access the Check Point Documentation Portal

List Members (GET)

Prev Next

GET /v1/users

Get a paginated list of users.

Parameters:

PropertyData TypeDescription
pageIntegerPage to start from.
limitIntegerThe number of records per page.
qStringSearch string or URL encoded JSON.
qTypeStringType of search. One of:
  • full [default]
  • partial
qOperatorStringApplicable only if qType equals 'partial'. One of:
  • and
  • or [default]
sortObjectMap of fields and sort order.
{
    "field1": "asc",
    "field2": "desc"
}
Example: ?sort[field1]=asc&sort[field2]=desc

Request Body: None

Request Example:

curl -X GET -H 'Authorization: Bearer <ACCESS_TOKEN>' -H 'Content-Type: application/json' 'https://api.perimeter81.com/api/rest/v1/users?page=1&limit=25&q=<SEARCH_WORD>&qType=full'

Response Body:

Status Code

Message/Response Body

Description

200

UserList

Success. A list of users is returned.

Response Example (200):

{
  "data":[
    {
      "tenantId":"<TENANT_ID>",
      "terminated":false,
      "initialsColor":"#6BB9D7",
      "invitationAttempts":0,
      "invitationToken":"<INVITATION_TOKEN>",
      "role":"<ROLE>",
      "username":"<EMAIL>",
      "email":"<EMAIL>",
      "emailVerified":true,
      "idProviders":{
        "okta":{
          "enrolledMfa":[
            "guardian"
          ],
          "idpConnName":"<IDP_CONNECTION>",
          "groups":[
            ""
          ],
          "userId":"<IDP_UserID>"
        }
      },
      "firstName":"<FIRST_NAME>",
      "lastName":"<LAST_NAME>",
      "initials":"<INITIALS>",
      "inviteMessage":"",
      "icon":{
        "__type":"File",
        "name":"777e56502bc6197feea083e086fdf3a6aebd1ae17c727b33d7e2041fa6ad291e_avatar_JrazjjjLaz_1586071344318.png",
        "url":"https://static.perimeter81.com/api/files/777e56502bc6197feea083e086fdf3a6aebd1ae17c727b33d7e2041fa6ad291e_avatar_JrazjjjLaz_1586071344318.png"
      },
      "roleName":"Engineering",
      "lastVPNSuccessLoginAt":"2021-04-06T06:28:06.093Z",
      "score":3.0999999999999996,
      "createdAt":"2020-03-04T09:17:47.500Z",
      "updatedAt":"2021-09-29T08:09:45.392Z",
      "id":"JrazjLjLaz"
    }
  ],
  "page":1,
  "totalPage":148,
  "itemsTotal":148
}