openapi: 3.1.0 info: title: Arthur Scope Agents V1 Feature Flags V1 API version: 0.1.0 tags: - name: Feature Flags V1 paths: /api/v1/feature-flags: get: tags: - Feature Flags V1 summary: Get Feature Flags. description: Retrieves all feature flags in the environment. operationId: get_feature_flags responses: '200': description: Successful Response content: application/json: schema: additionalProperties: true type: object title: Response Get Feature Flags '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/InternalServerError' components: schemas: InternalServerError: properties: detail: type: string title: Detail default: Internal server error type: object title: InternalServerError securitySchemes: OAuth2AuthorizationCode: type: oauth2 flows: authorizationCode: refreshUrl: https://platform-auth.arthur.ai/realms/arthur/protocol/openid-connect/token scopes: {} authorizationUrl: https://platform-auth.arthur.ai/realms/arthur/protocol/openid-connect/auth tokenUrl: https://platform-auth.arthur.ai/realms/arthur/protocol/openid-connect/token