Get organization scopes

GET /api/organization-scopes

Get organization scopes that match with pagination.

Query parameters

  • q string
  • page integer

    Page number (starts from 1).

    Minimum value is 1. Default value is 1.

  • page_size integer

    Entries per page.

    Minimum value is 1. Default value is 20.

Responses

  • 200 application/json

    A list of organization scopes.

    Hide response attributes Show response attributes object
    • id string Required

      Minimum length is 1, maximum length is 21.

    • name string Required

      Minimum length is 1, maximum length is 128.

    • description string | null Required

      Maximum length is 256.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

GET /api/organization-scopes
curl \
 -X GET https://[tenant_id].logto.app/api/organization-scopes
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "description": "string"
  }
]