openapi: 3.1.0 info: title: Bluejay Agents Check Queue Simulation Run API description: Bluejay API version: 0.1.0 servers: - url: https://api.getbluejay.ai description: Production server security: - apiKeyAuth: [] tags: - name: Check Queue Simulation Run paths: /v1/check-queue-simulation-run/{simulation_run_id}: post: summary: Check Queue Simulation Run operationId: check_queue_simulation_run_v1_check_queue_simulation_run__simulation_run_id__post parameters: - name: simulation_run_id in: path required: true schema: type: integer title: Simulation Run Id - name: X-Webhook-Secret in: header required: false schema: anyOf: - type: string - type: 'null' title: X-Webhook-Secret - name: X-API-Key in: header required: true schema: type: string description: API key required to authenticate requests. responses: '200': description: Successful Response content: application/json: schema: {} '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' tags: - Check Queue Simulation Run components: schemas: ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type type: object required: - loc - msg - type title: ValidationError HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError securitySchemes: apiKeyAuth: type: apiKey in: header name: X-API-Key description: API key required to authenticate requests.