openapi: 3.1.0 info: title: UiPath Automation Hub Alerts API description: The UiPath Automation Hub API provides access to the automation pipeline and idea management platform, allowing developers to programmatically create, retrieve, and manage automation ideas, projects, and pipeline data. The API is accessible at the tenant-scoped endpoint https://cloud.uipath.com/{orgName}/{tenantName}/automationhub_/api/v1/ and uses token-based authentication generated from the Automation Hub Admin Console. It is designed for organizations building Center of Excellence workflows, integrating Automation Hub data with external tools, or automating pipeline governance processes. A Postman collection and Swagger interface are available for exploring and testing endpoints. version: '1.0' contact: name: UiPath Support url: https://support.uipath.com termsOfService: https://www.uipath.com/legal/terms-of-use servers: - url: https://cloud.uipath.com/{orgName}/{tenantName}/automationhub_/api/v1 description: UiPath Automation Cloud Automation Hub variables: orgName: default: your-org description: The name of your UiPath organization tenantName: default: your-tenant description: The name of your UiPath tenant security: - apiKeyAuth: [] tags: - name: Alerts description: Retrieve and manage system and automation alerts paths: /odata/Alerts: get: operationId: listAlerts summary: UiPath List Alerts description: Retrieves a list of system and automation alerts. Alerts are raised for events such as job failures, robot disconnections, and queue SLA breaches. Supports OData filtering by severity, component, and read status. tags: - Alerts parameters: - $ref: '#/components/parameters/odataFilter' example: example-value - $ref: '#/components/parameters/odataOrderby' example: example-value - $ref: '#/components/parameters/odataTop' example: example-value - $ref: '#/components/parameters/odataSkip' example: example-value - $ref: '#/components/parameters/xUiPathOrganizationUnitId' example: example-value responses: '200': description: A list of alerts content: application/json: schema: $ref: '#/components/schemas/ODataAlertCollection' examples: listAlerts200Example: summary: Default listAlerts 200 response x-microcks-default: true value: value: - Id: {} NotificationName: {} AlertSeverity: {} Message: {} CreationTime: {} Component: {} '401': $ref: '#/components/responses/Unauthorized' x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: ODataAlertCollection: type: object description: OData collection response containing alerts properties: value: type: array items: type: object properties: Id: type: integer format: int64 description: Unique alert identifier NotificationName: type: string description: Name of the alert notification AlertSeverity: type: string enum: - Info - Warn - Error - Fatal description: Severity level of the alert Message: type: string description: Alert message content CreationTime: type: string format: date-time description: ISO 8601 timestamp when the alert was created Component: type: string description: The Orchestrator component that generated the alert example: [] ErrorResponse: type: object description: Standard error response body properties: message: type: string description: Human-readable error message example: example-value errorCode: type: integer description: Numeric error code example: 1 traceId: type: string description: Trace identifier for support and debugging example: abc123 parameters: odataFilter: name: $filter in: query required: false description: OData filter expression to narrow results (e.g., State eq 'Running') schema: type: string xUiPathOrganizationUnitId: name: X-UIPATH-OrganizationUnitId in: header required: false description: The numeric ID of the folder context for the request. Required when accessing folder-scoped resources. Retrieve folder IDs using the /odata/Folders endpoint. schema: type: integer format: int64 odataOrderby: name: $orderby in: query required: false description: OData orderby clause (e.g., CreationTime desc) schema: type: string odataTop: name: $top in: query required: false description: Maximum number of records to return (default 100, max 1000) schema: type: integer minimum: 1 maximum: 1000 odataSkip: name: $skip in: query required: false description: Number of records to skip for pagination schema: type: integer minimum: 0 responses: Unauthorized: description: The request lacks valid authentication credentials content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' securitySchemes: apiKeyAuth: type: apiKey in: header name: Authorization description: 'API token generated from the Automation Hub Admin Console under Platform Setup > Open API. Include as a Bearer token in the Authorization header: "Bearer {token}".' externalDocs: description: UiPath Automation Hub API Documentation url: https://docs.uipath.com/automation-hub/automation-cloud/latest/api-guide/introduction-to-automation-hub-api-1