IntServ Access API
  • Welcome
  • Basics
    • Overview
    • Authentication
  • API Overview
    • Get Started
    • Access Keys
    • Event Types
  • Events and Flows
  • Integration Request Flow
  • Integration Request Event
  • Access Levels Sync Event
  • App Endpoints
    • /appflows/auth_integration
  • API Endpoints
    • /accesskeys/add
    • /accesskeys/remove
    • /accesskeys/status
    • /accesslevels/list
    • /events/list
  • Resources
  • Change Log
Powered by GitBook
On this page
  • Request Body Parameters
  • Responses

Was this helpful?

  1. API Endpoints

/accesslevels/list

Previous/accesskeys/statusNext/events/list

Last updated 4 years ago

Was this helpful?

https://api.intserv.se/v1/accesslevels/list

Retrieves all access levels as configured in each access control system that the integrator has access to.

Authentication Type: Integration API Key

Request Body Parameters

There is no parameters for this request.

Responses

200 OK Response Body Parameters

{
    "levels": 
    [ 
        { 
            "id": "d344c359-9fd9-48ed-bb02-7426a831dfac",
            "name": "access-level-name", 
            "system_id": "abc123-001" 
        },
        { 
            "id": "e287a335-d082-4313-85ea-32f4291134ce",
            "name": "another level", 
            "system_id": "abc123-001" 
        }
    ]
}
AccessLevelResponse {
    levels (array[AccessLevel])
}

AccessLevel {
    id (string),
    name (string),
    system_id (string)
}

AccessLevelResponse Model

Field

Type

Description

levels

array[AccessLevel]

Array of access levels.

AccessLevel Model

Field

Type

Description

id

string

The id of the access level.

name

string

The name of the access level.

system_id

string

Identifier of the access control system the access level belongs to.

📩
✅