Skip to main content

List all clients

GET 

/nevisidm/api/core/v1/clients

Since: 2.73.0

Required permission(s): AccessControl.ClientView

Returns all clients visible to the caller, with pagination support. The result set contains basic client information including name, display names, and metadata.

Request

Query Parameters

    continuationToken string

    Pagination continuation token from a previous response.

    limit int32

    Default value: 0

    Maximum number of results to return.

    Example: 1000

Responses

Clients retrieved successfully

Schema
    items object[]
  • Array [
  • created string

    Creation date of the entity.

    lastModified string

    Date when the entity was last modified.

    version int32

    Version used for optimistic locking.

    extId string

    External ID of the client. Assigned during creation and cannot be changed afterwards.

    name string

    Internal name of the client. Must be unique across all clients.

    displayName object

    Language-dependent display name of the client. Keys: EN, DE, FR, IT.

    property name* string
  • ]
  • _pagination object
    continuationToken string

    The continuation token for fetching the next page of results generated from creation date and external id of the last entity

    limit int32

    The maximum number of results returned in a single page

    totalResult int64

    The total number of results available, only supported for selected endpoints, if returnTotalResultCount query-parameter is true

    _classifications object
    property name* string[]
  • Array [
  • string

  • ]
Loading...