openapi: 3.1.0 info: title: Citrix ADC (NetScaler) NITRO Access Policies Notifications API description: REST API for configuring and monitoring Citrix ADC (NetScaler) application delivery controllers, including load balancing virtual servers, services, service groups, SSL certificates, content switching, and system statistics. version: '14.1' contact: name: Citrix Support url: https://support.citrix.com/ termsOfService: https://developer.cloud.com/citrix-developer-terms-of-use servers: - url: https://{netscaler-ip}/nitro/v1 description: Citrix ADC NITRO API variables: netscaler-ip: default: 192.168.1.1 description: NetScaler management IP address security: - nitroAuth: [] tags: - name: Notifications description: Manage platform notifications paths: /notifications: get: operationId: listNotifications summary: Citrix List notifications description: Retrieve platform notifications for the customer. tags: - Notifications parameters: - $ref: '#/components/parameters/CitrixCustomerId' responses: '200': description: List of notifications content: application/json: schema: type: object properties: items: type: array items: $ref: '#/components/schemas/Notification' '401': description: Unauthorized components: parameters: CitrixCustomerId: name: Citrix-CustomerId in: header required: true description: Citrix Cloud customer ID header schema: type: string schemas: Notification: type: object properties: id: type: string description: Notification unique identifier title: type: string description: Notification title description: type: string description: Notification description severity: type: string enum: - Information - Warning - Critical description: Severity level of the notification createdDate: type: string format: date-time description: When the notification was created securitySchemes: nitroAuth: type: apiKey in: cookie name: NITRO_AUTH_TOKEN description: Session cookie from NITRO login externalDocs: description: Citrix ADC NITRO API Reference url: https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release.html