GET /api/settings

GET /api/settings

Query parameters

  • yardId integer(int64)

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • name string
    • type string

      Values are STRING, BOOLEAN, NUMBER, CHOICE, or JSON.

    • options array
    • stop_override_level string

      Values are GLOBAL, ORGANIZATION, YARD, or ACCOUNT.

    • write_permission_level string

      Values are GLOBAL_ADMIN, ORG_ADMIN, or ALL.

    • values object
      Hide values attribute Show values attribute object
      • * array Additional properties
    • effective_value array
  • 401

    Not Authorized

  • 403

    Not Allowed

GET /api/settings
curl \
 --request GET 'https://api-dev.gatego.io/api/settings'
Response examples (200)
[
  {
    "name": "string",
    "type": "STRING",
    "options": [],
    "stop_override_level": "GLOBAL",
    "write_permission_level": "GLOBAL_ADMIN",
    "values": {
      "additionalProperty1": [],
      "additionalProperty2": []
    },
    "effective_value": []
  }
]