openapi: 3.0.1 info: title: Hookdeck Bulk Operations API version: 1.0.0 description: Plan, schedule, and cancel bulk operations that retry or cancel many events, requests, or ignored events at once. Returns progress and per-batch counts. contact: name: Hookdeck Support url: https://hookdeck.com/contact-us email: info@hookdeck.com servers: - url: https://api.hookdeck.com/2025-07-01 description: Production API security: - bearerAuth: [] - basicAuth: [] tags: - name: Bulk cancel events description: Bulk cancel operations allow you to cancel multiple pending events at once. - name: Bulk retry events description: Bulk retry operations allow you to retry many events at once. A bulk retry is first estimated, then created, then processed asynchronously. - name: Bulk retry ignored events description: Bulk retry ignored events allow you to retry many events that were previously ignored (for instance due to filter rules) at once. - name: Bulk retry requests description: Bulk retry requests allow you to re-ingest many previously received requests at once. paths: /bulk/events/cancel: get: operationId: getEventBulkCancels summary: Retrieve events bulk cancels description: This endpoint lists events bulk cancels. tags: - Bulk cancel events responses: '200': description: List of events bulk cancels content: application/json: schema: $ref: '#/components/schemas/BatchOperationPaginatedResult' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: cancelled_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk cancel was cancelled - in: query name: completed_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk cancel completed - in: query name: created_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk cancel was created - in: query name: id schema: anyOf: - type: string maxLength: 255 description: Bulk cancel ID - type: array items: type: string maxLength: 255 description: Bulk cancel ID description: Filter by bulk cancel IDs - in: query name: query schema: type: object properties: id: anyOf: - type: string maxLength: 255 description: Event ID - type: array items: type: string maxLength: 255 description: Event ID description: Filter by event IDs status: anyOf: - $ref: '#/components/schemas/EventStatus' - type: array items: $ref: '#/components/schemas/EventStatus' description: Lifecyle status of the event webhook_id: anyOf: - type: string maxLength: 255 description: Connection (webhook) ID - type: array items: type: string maxLength: 255 description: Connection (webhook) ID description: Filter by connection (webhook) IDs destination_id: anyOf: - type: string maxLength: 255 description: Destination ID - type: array items: type: string maxLength: 255 description: Destination ID description: Filter by destination IDs source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs attempts: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' description: Filter by number of attempts response_status: anyOf: - type: integer minimum: 200 maximum: 600 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 200 maximum: 600 nullable: true description: Filter by HTTP response status code successful_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `successful_at` date using a date operator created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by `created_at` date using a date operator error_code: anyOf: - $ref: '#/components/schemas/AttemptErrorCodes' - type: array items: $ref: '#/components/schemas/AttemptErrorCodes' description: Filter by error code code cli_id: anyOf: - type: string - type: object properties: any: type: boolean all: type: boolean additionalProperties: false - type: array items: type: string nullable: true description: Filter by CLI IDs. `?[any]=true` operator for any CLI. last_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `last_attempt_at` date using a date operator next_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `next_attempt_at` date using a date operator search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path cli_user_id: anyOf: - type: string - type: array items: type: string nullable: true x-docs-hide: true issue_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true event_data_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter for events to be included in the bulk cancel operation, use query parameters of [Event](#events) x-docs-force-simple-type: true x-docs-type: JSON - in: query name: query_partial_match schema: type: boolean description: Allow partial filter match on query property - in: query name: in_progress schema: type: boolean description: Indicates if the bulk cancel is currently in progress - in: query name: order_by schema: anyOf: - type: string maxLength: 255 enum: - created_at - type: array items: type: string maxLength: 255 enum: - created_at minItems: 2 maxItems: 2 description: Sort key(s) - in: query name: dir schema: anyOf: - type: string enum: - asc - desc - type: array items: type: string enum: - asc - desc minItems: 2 maxItems: 2 description: Sort direction(s) - in: query name: limit schema: type: integer minimum: 0 maximum: 255 description: Result set size - in: query name: next schema: type: string maxLength: 255 description: The ID to provide in the query to get the next set of results - in: query name: prev schema: type: string maxLength: 255 description: The ID to provide in the query to get the previous set of results post: operationId: createEventBulkCancel summary: Create events bulk cancel description: This endpoint creates and starts an events bulk cancel using the provided query. tags: - Bulk cancel events responses: '200': description: A single events bulk cancel content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: [] requestBody: required: true content: application/json: schema: type: object properties: query: type: object properties: id: anyOf: - type: string maxLength: 255 description: Event ID - type: array items: type: string maxLength: 255 description: Event ID description: Filter by event IDs status: anyOf: - $ref: '#/components/schemas/EventStatus' - type: array items: $ref: '#/components/schemas/EventStatus' description: Lifecyle status of the event webhook_id: anyOf: - type: string maxLength: 255 description: Connection (webhook) ID - type: array items: type: string maxLength: 255 description: Connection (webhook) ID description: Filter by connection (webhook) IDs destination_id: anyOf: - type: string maxLength: 255 description: Destination ID - type: array items: type: string maxLength: 255 description: Destination ID description: Filter by destination IDs source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs attempts: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' description: Filter by number of attempts response_status: anyOf: - type: integer minimum: 200 maximum: 600 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 200 maximum: 600 nullable: true description: Filter by HTTP response status code successful_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `successful_at` date using a date operator created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by `created_at` date using a date operator error_code: anyOf: - $ref: '#/components/schemas/AttemptErrorCodes' - type: array items: $ref: '#/components/schemas/AttemptErrorCodes' description: Filter by error code code cli_id: anyOf: - type: string - type: object properties: any: type: boolean all: type: boolean additionalProperties: false - type: array items: type: string nullable: true description: Filter by CLI IDs. `?[any]=true` operator for any CLI. last_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `last_attempt_at` date using a date operator next_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `next_attempt_at` date using a date operator search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path cli_user_id: anyOf: - type: string - type: array items: type: string nullable: true x-docs-hide: true issue_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true event_data_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter properties for the events to be included in the bulk cancel x-docs-force-simple-type: true x-docs-type: JSON additionalProperties: false /bulk/events/cancel/plan: get: operationId: generateEventBulkCancelPlan summary: Generate events bulk cancel plan description: This endpoint estimates the number of events matched by the provided query before creating a bulk cancel. tags: - Bulk cancel events responses: '200': description: Events bulk cancel plan content: application/json: schema: type: object properties: estimated_batch: type: integer nullable: true description: Number of batches required to complete the bulk retry estimated_count: type: integer nullable: true description: Number of estimated events to be retried progress: type: number format: float nullable: true description: Progression of the batch operations, values 0 - 1 additionalProperties: false '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: query schema: type: object properties: id: anyOf: - type: string maxLength: 255 description: Event ID - type: array items: type: string maxLength: 255 description: Event ID description: Filter by event IDs status: anyOf: - $ref: '#/components/schemas/EventStatus' - type: array items: $ref: '#/components/schemas/EventStatus' description: Lifecyle status of the event webhook_id: anyOf: - type: string maxLength: 255 description: Connection (webhook) ID - type: array items: type: string maxLength: 255 description: Connection (webhook) ID description: Filter by connection (webhook) IDs destination_id: anyOf: - type: string maxLength: 255 description: Destination ID - type: array items: type: string maxLength: 255 description: Destination ID description: Filter by destination IDs source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs attempts: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' description: Filter by number of attempts response_status: anyOf: - type: integer minimum: 200 maximum: 600 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 200 maximum: 600 nullable: true description: Filter by HTTP response status code successful_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `successful_at` date using a date operator created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by `created_at` date using a date operator error_code: anyOf: - $ref: '#/components/schemas/AttemptErrorCodes' - type: array items: $ref: '#/components/schemas/AttemptErrorCodes' description: Filter by error code code cli_id: anyOf: - type: string - type: object properties: any: type: boolean all: type: boolean additionalProperties: false - type: array items: type: string nullable: true description: Filter by CLI IDs. `?[any]=true` operator for any CLI. last_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `last_attempt_at` date using a date operator next_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `next_attempt_at` date using a date operator search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path cli_user_id: anyOf: - type: string - type: array items: type: string nullable: true x-docs-hide: true issue_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true event_data_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter properties for the events to be included in the bulk cancel x-docs-force-simple-type: true x-docs-type: JSON /bulk/events/cancel/{id}: get: operationId: getEventBulkCancel summary: Retrieve events bulk cancel description: This endpoint retrieves a specific events bulk cancel. tags: - Bulk cancel events responses: '200': description: A single events bulk cancel content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: path name: id schema: type: string description: Bulk cancel ID required: true /bulk/events/retry: get: operationId: getEventBulkRetries summary: Retrieve events bulk retries description: This endpoint lists events bulk retries. tags: - Bulk retry events responses: '200': description: List of events bulk retries content: application/json: schema: $ref: '#/components/schemas/BatchOperationPaginatedResult' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: cancelled_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry was cancelled - in: query name: completed_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry completed - in: query name: created_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry was created - in: query name: id schema: anyOf: - type: string maxLength: 255 description: Bulk retry ID - type: array items: type: string maxLength: 255 description: Bulk retry ID description: Filter by bulk retry IDs - in: query name: query schema: type: object properties: id: anyOf: - type: string maxLength: 255 description: Event ID - type: array items: type: string maxLength: 255 description: Event ID description: Filter by event IDs status: anyOf: - $ref: '#/components/schemas/EventStatus' - type: array items: $ref: '#/components/schemas/EventStatus' description: Lifecyle status of the event webhook_id: anyOf: - type: string maxLength: 255 description: Connection (webhook) ID - type: array items: type: string maxLength: 255 description: Connection (webhook) ID description: Filter by connection (webhook) IDs destination_id: anyOf: - type: string maxLength: 255 description: Destination ID - type: array items: type: string maxLength: 255 description: Destination ID description: Filter by destination IDs source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs attempts: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' description: Filter by number of attempts response_status: anyOf: - type: integer minimum: 200 maximum: 600 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 200 maximum: 600 nullable: true description: Filter by HTTP response status code successful_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `successful_at` date using a date operator created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by `created_at` date using a date operator error_code: anyOf: - $ref: '#/components/schemas/AttemptErrorCodes' - type: array items: $ref: '#/components/schemas/AttemptErrorCodes' description: Filter by error code code cli_id: anyOf: - type: string - type: object properties: any: type: boolean all: type: boolean additionalProperties: false - type: array items: type: string nullable: true description: Filter by CLI IDs. `?[any]=true` operator for any CLI. last_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `last_attempt_at` date using a date operator next_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `next_attempt_at` date using a date operator search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path cli_user_id: anyOf: - type: string - type: array items: type: string nullable: true x-docs-hide: true issue_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true event_data_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter for events to be included in the bulk retry, use query parameters of [Event](#events) x-docs-force-simple-type: true x-docs-type: JSON - in: query name: query_partial_match schema: type: boolean description: Allow partial filter match on query property - in: query name: in_progress schema: type: boolean description: Indicates if the bulk retry is currently in progress - in: query name: order_by schema: anyOf: - type: string maxLength: 255 enum: - created_at - type: array items: type: string maxLength: 255 enum: - created_at minItems: 2 maxItems: 2 description: Sort key(s) - in: query name: dir schema: anyOf: - type: string enum: - asc - desc - type: array items: type: string enum: - asc - desc minItems: 2 maxItems: 2 description: Sort direction(s) - in: query name: limit schema: type: integer minimum: 0 maximum: 255 description: Result set size - in: query name: next schema: type: string maxLength: 255 description: The ID to provide in the query to get the next set of results - in: query name: prev schema: type: string maxLength: 255 description: The ID to provide in the query to get the previous set of results post: operationId: createEventBulkRetry summary: Create events bulk retry description: This endpoint creates and starts an events bulk retry using the provided query. tags: - Bulk retry events responses: '200': description: A single events bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: [] requestBody: required: true content: application/json: schema: type: object properties: query: type: object properties: id: anyOf: - type: string maxLength: 255 description: Event ID - type: array items: type: string maxLength: 255 description: Event ID description: Filter by event IDs status: anyOf: - $ref: '#/components/schemas/EventStatus' - type: array items: $ref: '#/components/schemas/EventStatus' description: Lifecyle status of the event webhook_id: anyOf: - type: string maxLength: 255 description: Connection (webhook) ID - type: array items: type: string maxLength: 255 description: Connection (webhook) ID description: Filter by connection (webhook) IDs destination_id: anyOf: - type: string maxLength: 255 description: Destination ID - type: array items: type: string maxLength: 255 description: Destination ID description: Filter by destination IDs source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs attempts: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' description: Filter by number of attempts response_status: anyOf: - type: integer minimum: 200 maximum: 600 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 200 maximum: 600 nullable: true description: Filter by HTTP response status code successful_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `successful_at` date using a date operator created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by `created_at` date using a date operator error_code: anyOf: - $ref: '#/components/schemas/AttemptErrorCodes' - type: array items: $ref: '#/components/schemas/AttemptErrorCodes' description: Filter by error code code cli_id: anyOf: - type: string - type: object properties: any: type: boolean all: type: boolean additionalProperties: false - type: array items: type: string nullable: true description: Filter by CLI IDs. `?[any]=true` operator for any CLI. last_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `last_attempt_at` date using a date operator next_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `next_attempt_at` date using a date operator search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path cli_user_id: anyOf: - type: string - type: array items: type: string nullable: true x-docs-hide: true issue_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true event_data_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter properties for the events to be included in the bulk retry x-docs-force-simple-type: true x-docs-type: JSON additionalProperties: false /bulk/events/retry/plan: get: operationId: generateEventBulkRetryPlan summary: Generate events bulk retry plan description: This endpoint estimates the number of events matched by the provided query before creating a bulk retry. Use the plan to preview impact. tags: - Bulk retry events responses: '200': description: Events bulk retry plan content: application/json: schema: type: object properties: estimated_batch: type: integer nullable: true description: Number of batches required to complete the bulk retry estimated_count: type: integer nullable: true description: Number of estimated events to be retried progress: type: number format: float nullable: true description: Progression of the batch operations, values 0 - 1 additionalProperties: false '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: query schema: type: object properties: id: anyOf: - type: string maxLength: 255 description: Event ID - type: array items: type: string maxLength: 255 description: Event ID description: Filter by event IDs status: anyOf: - $ref: '#/components/schemas/EventStatus' - type: array items: $ref: '#/components/schemas/EventStatus' description: Lifecyle status of the event webhook_id: anyOf: - type: string maxLength: 255 description: Connection (webhook) ID - type: array items: type: string maxLength: 255 description: Connection (webhook) ID description: Filter by connection (webhook) IDs destination_id: anyOf: - type: string maxLength: 255 description: Destination ID - type: array items: type: string maxLength: 255 description: Destination ID description: Filter by destination IDs source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs attempts: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' description: Filter by number of attempts response_status: anyOf: - type: integer minimum: 200 maximum: 600 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 200 maximum: 600 nullable: true description: Filter by HTTP response status code successful_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `successful_at` date using a date operator created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by `created_at` date using a date operator error_code: anyOf: - $ref: '#/components/schemas/AttemptErrorCodes' - type: array items: $ref: '#/components/schemas/AttemptErrorCodes' description: Filter by error code code cli_id: anyOf: - type: string - type: object properties: any: type: boolean all: type: boolean additionalProperties: false - type: array items: type: string nullable: true description: Filter by CLI IDs. `?[any]=true` operator for any CLI. last_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `last_attempt_at` date using a date operator next_attempt_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' nullable: true description: Filter by `next_attempt_at` date using a date operator search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path cli_user_id: anyOf: - type: string - type: array items: type: string nullable: true x-docs-hide: true issue_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true event_data_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter properties for the events to be included in the bulk retry x-docs-force-simple-type: true x-docs-type: JSON /bulk/events/retry/{id}: get: operationId: getEventBulkRetry summary: Retrieve events bulk retry description: This endpoint retrieves a specific events bulk retry. tags: - Bulk retry events responses: '200': description: A single events bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: path name: id schema: type: string description: Bulk retry ID required: true /bulk/events/retry/{id}/cancel: post: operationId: cancelEventBulkRetry summary: Cancel events bulk retry description: This endpoint cancels a pending or in-progress events bulk retry. tags: - Bulk retry events responses: '200': description: A single events bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: path name: id schema: type: string description: Bulk retry ID required: true /bulk/ignored-events/retry: get: operationId: getIgnoredEventBulkRetries summary: Retrieve ignored events bulk retries description: This endpoint lists ignored events bulk retries. tags: - Bulk retry ignored events responses: '200': description: List of ignored events bulk retries content: application/json: schema: $ref: '#/components/schemas/BatchOperationPaginatedResult' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: cancelled_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry was cancelled - in: query name: completed_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry completed - in: query name: created_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry was created - in: query name: id schema: anyOf: - type: string maxLength: 255 description: Bulk retry ID - type: array items: type: string maxLength: 255 description: Bulk retry ID description: Filter by bulk retry IDs - in: query name: query schema: type: object properties: cause: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 description: The cause of the ignored event webhook_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 description: Connection (webhook) ID of the ignored event transformation_id: type: string maxLength: 255 description: The associated transformation ID (only applicable to the cause `TRANSFORMATION_FAILED`) additionalProperties: false description: Filter by the bulk retry ignored event query object x-docs-type: JSON - in: query name: query_partial_match schema: type: boolean description: Allow partial filter match on query property - in: query name: in_progress schema: type: boolean description: Indicates if the bulk retry is currently in progress - in: query name: order_by schema: anyOf: - type: string maxLength: 255 enum: - created_at - type: array items: type: string maxLength: 255 enum: - created_at minItems: 2 maxItems: 2 description: Sort key(s) - in: query name: dir schema: anyOf: - type: string enum: - asc - desc - type: array items: type: string enum: - asc - desc minItems: 2 maxItems: 2 description: Sort direction(s) - in: query name: limit schema: type: integer minimum: 0 maximum: 255 description: Result set size - in: query name: next schema: type: string maxLength: 255 description: The ID to provide in the query to get the next set of results - in: query name: prev schema: type: string maxLength: 255 description: The ID to provide in the query to get the previous set of results post: operationId: createIgnoredEventBulkRetry summary: Create ignored events bulk retry description: This endpoint creates and starts an ignored events bulk retry using the provided query. tags: - Bulk retry ignored events responses: '200': description: A single ignored events bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: [] requestBody: required: true content: application/json: schema: type: object properties: query: type: object properties: cause: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 description: The cause of the ignored event webhook_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 description: Connection (webhook) ID of the ignored event transformation_id: type: string maxLength: 255 description: The associated transformation ID (only applicable to the cause `TRANSFORMATION_FAILED`) additionalProperties: false description: Filter by the bulk retry ignored event query object x-docs-type: JSON additionalProperties: false /bulk/ignored-events/retry/plan: get: operationId: generateIgnoredEventBulkRetryPlan summary: Generate ignored events bulk retry plan description: This endpoint estimates the number of ignored events matched by the provided query before creating a bulk retry. tags: - Bulk retry ignored events responses: '200': description: Ignored events bulk retry plan content: application/json: schema: type: object properties: estimated_batch: type: integer nullable: true description: Number of batches required to complete the bulk retry estimated_count: type: integer nullable: true description: Number of estimated events to be retried progress: type: number format: float nullable: true description: Progression of the batch operations, values 0 - 1 additionalProperties: false '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: query schema: type: object properties: cause: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 description: The cause of the ignored event webhook_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 description: Connection (webhook) ID of the ignored event transformation_id: type: string maxLength: 255 description: The associated transformation ID (only applicable to the cause `TRANSFORMATION_FAILED`) additionalProperties: false description: Filter by the bulk retry ignored event query object x-docs-type: JSON /bulk/ignored-events/retry/{id}: get: operationId: getIgnoredEventBulkRetry summary: Retrieve ignored events bulk retry description: This endpoint retrieves a specific ignored events bulk retry. tags: - Bulk retry ignored events responses: '200': description: A single ignored events bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: path name: id schema: type: string description: Bulk retry ID required: true /bulk/ignored-events/retry/{id}/cancel: post: operationId: cancelIgnoredEventBulkRetry summary: Cancel ignored events bulk retry description: This endpoint cancels a pending or in-progress ignored events bulk retry. tags: - Bulk retry ignored events responses: '200': description: A single ignored events bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: path name: id schema: type: string description: Bulk retry ID required: true /bulk/requests/retry: get: operationId: getRequestBulkRetries summary: Retrieve requests bulk retries description: This endpoint lists requests bulk retries. tags: - Bulk retry requests responses: '200': description: List of request bulk retries content: application/json: schema: $ref: '#/components/schemas/BatchOperationPaginatedResult' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: cancelled_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry was cancelled - in: query name: completed_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry completed - in: query name: created_at schema: anyOf: - type: string format: date-time nullable: true - $ref: '#/components/schemas/Operators' description: Filter by date the bulk retry was created - in: query name: id schema: anyOf: - type: string maxLength: 255 description: Bulk retry ID - type: array items: type: string maxLength: 255 description: Bulk retry ID description: Filter by bulk retry IDs - in: query name: in_progress schema: type: boolean description: Indicates if the bulk retry is currently in progress - in: query name: query schema: type: object properties: id: anyOf: - type: string maxLength: 255 description: Request ID - type: array items: type: string maxLength: 255 description: Request ID description: Filter by requests IDs status: type: string enum: - accepted - rejected description: Filter by status rejection_cause: anyOf: - $ref: '#/components/schemas/RequestRejectionCause' - type: array items: $ref: '#/components/schemas/RequestRejectionCause' nullable: true description: Filter by rejection cause source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs verified: type: boolean description: Filter by verification status search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path ignored_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of ignored events events_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of events cli_events_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of CLI events created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by request created date ingested_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by request ingested date bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true include: type: string enum: - data x-docs-hide: true progressive: type: string enum: - 'true' - 'false' description: Enable progressive loading for partial results x-docs-hide: true order_by: type: string maxLength: 255 enum: - created_at - ingested_at description: Sort key dir: type: string enum: - asc - desc description: Sort direction limit: type: integer minimum: 0 maximum: 255 description: Result set size next: type: string maxLength: 255 description: The ID to provide in the query to get the next set of results prev: type: string maxLength: 255 description: The ID to provide in the query to get the previous set of results additionalProperties: false description: Filter properties for the events to be included in the bulk retry, use query parameters of [Requests](#requests) x-docs-force-simple-type: true x-docs-type: JSON - in: query name: query_partial_match schema: type: boolean description: Allow partial filter match on query property - in: query name: order_by schema: anyOf: - type: string maxLength: 255 enum: - created_at - type: array items: type: string maxLength: 255 enum: - created_at minItems: 2 maxItems: 2 description: Sort key(s) - in: query name: dir schema: anyOf: - type: string enum: - asc - desc - type: array items: type: string enum: - asc - desc minItems: 2 maxItems: 2 description: Sort direction(s) - in: query name: limit schema: type: integer minimum: 0 maximum: 255 description: Result set size - in: query name: next schema: type: string maxLength: 255 description: The ID to provide in the query to get the next set of results - in: query name: prev schema: type: string maxLength: 255 description: The ID to provide in the query to get the previous set of results post: operationId: createRequestBulkRetry summary: Create requests bulk retry description: This endpoint creates and starts a requests bulk retry using the provided query. tags: - Bulk retry requests responses: '200': description: A single requests bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: [] requestBody: required: true content: application/json: schema: type: object properties: query: type: object properties: id: anyOf: - type: string maxLength: 255 description: Request ID - type: array items: type: string maxLength: 255 description: Request ID description: Filter by requests IDs status: type: string enum: - accepted - rejected description: Filter by status rejection_cause: anyOf: - $ref: '#/components/schemas/RequestRejectionCause' - type: array items: $ref: '#/components/schemas/RequestRejectionCause' nullable: true description: Filter by rejection cause source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs verified: type: boolean description: Filter by verification status search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path ignored_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of ignored events events_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of events cli_events_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of CLI events created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by request created date ingested_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by request ingested date bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter properties for the events to be included in the bulk retry, use query parameters of [Requests](#requests) x-docs-force-simple-type: true x-docs-type: JSON additionalProperties: false /bulk/requests/retry/plan: get: operationId: generateRequestBulkRetryPlan summary: Generate requests bulk retry plan description: This endpoint estimates the number of requests matched by the provided query before creating a bulk retry. tags: - Bulk retry requests responses: '200': description: Requests bulk retry plan content: application/json: schema: type: object properties: estimated_batch: type: integer nullable: true description: Number of batches required to complete the bulk retry estimated_count: type: integer nullable: true description: Number of estimated events to be retried progress: type: number format: float nullable: true description: Progression of the batch operations, values 0 - 1 additionalProperties: false '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Unprocessable Entity content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: query name: query schema: type: object properties: id: anyOf: - type: string maxLength: 255 description: Request ID - type: array items: type: string maxLength: 255 description: Request ID description: Filter by requests IDs status: type: string enum: - accepted - rejected description: Filter by status rejection_cause: anyOf: - $ref: '#/components/schemas/RequestRejectionCause' - type: array items: $ref: '#/components/schemas/RequestRejectionCause' nullable: true description: Filter by rejection cause source_id: anyOf: - type: string maxLength: 255 description: Source ID - type: array items: type: string maxLength: 255 description: Source ID description: Filter by source IDs verified: type: boolean description: Filter by verification status search_term: type: string minLength: 3 description: URL Encoded string of the value to match partially to the body, headers, parsed_query or path headers: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data headers x-docs-force-simple-type: true x-docs-type: JSON body: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the data body x-docs-force-simple-type: true x-docs-type: JSON parsed_query: anyOf: - type: string - type: object properties: {} additionalProperties: false description: URL Encoded string of the JSON to match to the parsed query (JSON representation of the query) x-docs-force-simple-type: true x-docs-type: JSON path: type: string description: URL Encoded string of the value to match partially to the path ignored_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of ignored events events_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of events cli_events_count: anyOf: - type: integer minimum: 0 - $ref: '#/components/schemas/Operators' - type: array items: type: integer minimum: 0 description: Filter by count of CLI events created_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by request created date ingested_at: anyOf: - type: string format: date-time - $ref: '#/components/schemas/Operators' description: Filter by request ingested date bulk_retry_id: anyOf: - type: string maxLength: 255 - type: array items: type: string maxLength: 255 x-docs-hide: true additionalProperties: false description: Filter properties for the events to be included in the bulk retry, use query parameters of [Requests](#requests) x-docs-force-simple-type: true x-docs-type: JSON /bulk/requests/retry/{id}: get: operationId: getRequestBulkRetry summary: Retrieve requests bulk retry description: This endpoint retrieves a specific requests bulk retry. tags: - Bulk retry requests responses: '200': description: A single requests bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: path name: id schema: type: string description: Bulk retry ID required: true /bulk/requests/retry/{id}/cancel: post: operationId: cancelRequestBulkRetry summary: Cancel requests bulk retry description: This endpoint cancels a pending or in-progress requests bulk retry. tags: - Bulk retry requests responses: '200': description: A single requests bulk retry content: application/json: schema: $ref: '#/components/schemas/BatchOperation' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' parameters: - in: path name: id schema: type: string description: Bulk retry ID required: true components: securitySchemes: bearerAuth: type: http scheme: bearer basicAuth: type: http scheme: basic schemas: OrderByDirection: anyOf: - enum: - asc - enum: - desc - enum: - ASC - enum: - DESC Operators: type: object properties: gt: type: string format: date-time nullable: true gte: type: string format: date-time nullable: true le: type: string format: date-time nullable: true lte: type: string format: date-time nullable: true any: type: boolean all: type: boolean additionalProperties: false SeekPagination: type: object properties: order_by: anyOf: - type: string - type: array items: type: string dir: anyOf: - $ref: '#/components/schemas/OrderByDirection' - type: array items: $ref: '#/components/schemas/OrderByDirection' limit: type: integer prev: type: string next: type: string additionalProperties: false AttemptErrorCodes: type: string enum: - BAD_RESPONSE - CANCELLED - TIMEOUT - NOT_FOUND - CANCELLED_PAST_RETENTION - CONNECTION_REFUSED - CONNECTION_RESET - MISSING_URL - CLI - CLI_UNAVAILABLE - SELF_SIGNED_CERT - ERR_TLS_CERT_ALTNAME_INVALID - ERR_SSL_WRONG_VERSION_NUMBER - NETWORK_ERROR - NETWORK_REQUEST_CANCELED - NETWORK_UNREACHABLE - TOO_MANY_REDIRECTS - INVALID_CHARACTER - INVALID_URL - SSL_ERROR_CA_UNKNOWN - DATA_ARCHIVED - SSL_CERT_EXPIRED - BULK_RETRY_CANCELLED - DNS_LOOKUP_FAILED - HOST_UNREACHABLE - INTERNAL_ERROR - PROTOCOL_ERROR - PAYLOAD_MISSING - UNABLE_TO_GET_ISSUER_CERT - SOCKET_CLOSED - OAUTH2_HANDSHAKE_FAILED - Z_DATA_ERROR - UNKNOWN description: Error code of the delivery attempt BatchOperationPaginatedResult: type: object properties: pagination: $ref: '#/components/schemas/SeekPagination' count: type: integer models: type: array items: $ref: '#/components/schemas/BatchOperation' additionalProperties: false EventStatus: type: string enum: - SCHEDULED - QUEUED - HOLD - SUCCESSFUL - FAILED - CANCELLED BatchOperation: type: object properties: id: type: string description: ID of the bulk retry team_id: type: string description: ID of the project type: type: string description: Type of the bulk operation query: anyOf: - type: object properties: {} additionalProperties: nullable: true - type: string nullable: true nullable: true description: Query object to filter records x-docs-force-simple-type: true x-docs-type: JSON created_at: type: string format: date-time description: Date the bulk retry was created updated_at: type: string format: date-time description: Last time the bulk retry was updated cancelled_at: type: string format: date-time nullable: true description: Date the bulk retry was cancelled completed_at: type: string format: date-time nullable: true description: Date the bulk retry was completed estimated_batch: type: integer nullable: true description: Number of batches required to complete the bulk retry estimated_count: type: integer nullable: true description: Number of estimated events to be retried processed_batch: type: integer nullable: true description: Number of batches currently processed completed_count: type: integer nullable: true description: Number of events that were successfully delivered in_progress: type: boolean description: Indicates if the bulk retry is currently in progress progress: type: number format: float nullable: true description: Progression of the batch operations, values 0 - 1 failed_count: type: integer nullable: true description: Number of events that failed to be delivered number: type: number format: float nullable: true x-docs-hide: true required: - id - team_id - type - created_at - updated_at - in_progress additionalProperties: false APIErrorResponse: type: object properties: code: type: string description: Error code status: type: number format: float description: Status code message: type: string description: Error description data: type: object properties: {} nullable: true required: - code - status - message additionalProperties: false description: Error response model RequestRejectionCause: type: string enum: - SOURCE_DISABLED - NO_CONNECTION - VERIFICATION_FAILED - UNSUPPORTED_HTTP_METHOD - UNSUPPORTED_CONTENT_TYPE - UNPARSABLE_JSON - PAYLOAD_TOO_LARGE - INGESTION_FATAL - UNKNOWN x-docs-type: string