openapi: 3.1.0 info: version: 1.0.0 title: Hatchet API Token Monitoring API description: The Hatchet API servers: - url: '' security: - bearerAuth: [] - cookieAuth: [] tags: - name: Monitoring paths: /api/v1/monitoring/{tenant}/probe: post: x-resources: - tenant description: Triggers a workflow to check the status of the instance summary: Detailed Health Probe for the Instance operationId: monitoring:post:runProbe parameters: - description: The tenant id in: path name: tenant required: true schema: type: string format: uuid minLength: 36 maxLength: 36 responses: '200': description: Successfully executed the probe. '403': content: application/json: schema: $ref: '#/components/schemas/APIErrors' description: Not authorized to perform this action tags: - Monitoring components: schemas: APIErrors: type: object properties: errors: type: array items: $ref: '#/components/schemas/APIError' required: - errors APIError: type: object properties: code: type: integer description: a custom Hatchet error code format: uint64 example: 1400 field: type: string description: the field that this error is associated with, if applicable example: name description: type: string description: a description for this error example: A descriptive error message docs_link: type: string description: a link to the documentation for this error, if it exists example: github.com/hatchet-dev/hatchet required: - description securitySchemes: bearerAuth: type: http scheme: bearer cookieAuth: type: apiKey in: cookie name: hatchet customAuth: type: http scheme: bearer