openapi: 3.1.0 info: title: Chameleon REST Alert Groups Limit Groups API version: '3' description: 'Chameleon server-side REST API for managing in-app product Experiences: user profiles, companies, segments, tours, microsurveys, launchers, tooltips, webhooks, themes, deliveries, and analytics. Authenticates with the X-Account-Secret header containing your account secret. ' contact: name: Chameleon Developer Portal url: https://developers.chameleon.io/ servers: - url: https://api.chameleon.io/v3 security: - accountSecret: [] tags: - name: Limit Groups paths: /edit/limit_groups: get: tags: - Limit Groups summary: List rate limit groups operationId: listLimitGroups responses: '200': description: List content: application/json: schema: $ref: '#/components/schemas/ListEnvelope' /edit/limit_groups/{id}: parameters: - in: path name: id required: true schema: type: string get: tags: - Limit Groups summary: Retrieve a rate limit group operationId: getLimitGroup responses: '200': description: Limit group content: application/json: schema: type: object components: schemas: ListEnvelope: type: object properties: data: type: array items: type: object next: type: string nullable: true securitySchemes: accountSecret: type: apiKey in: header name: X-Account-Secret description: Your Chameleon account secret. See https://developers.chameleon.io/api-introduction/authentication