You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API changes:
- Update API client
- Update API client
- Update API client
- Update API client
- Update API client
- ... and 8 more API files
Model changes:
- Add create_version_request model
- Add set_default_version_request model
- Add update_version_request model
- Add version_item model
- Add versions_list_response model
- ... and 54 more model files
Generated from OpenAPI spec v1.8.0
# Get the current status of an async PDF generation job. **Authentication:** API Key required (`x-api-key` header) ## Status Values | Status | Description | |--------|-------------| | `pending` | Job is queued, waiting to be processed | | `processing` | Job is being processed | | `completed` | PDF generated successfully | | `failed` | Job failed (check error_message) | ## Polling Recommendations - Poll every 1-2 seconds for small documents - Poll every 5-10 seconds for large documents - Consider using webhooks instead of polling
92
-
# @param job_id [String]
92
+
# @param job_id [String] Async job ID (UUID returned by the create-async endpoint)
# Get the current status of an async PDF generation job. **Authentication:** API Key required (`x-api-key` header) ## Status Values | Status | Description | |--------|-------------| | `pending` | Job is queued, waiting to be processed | | `processing` | Job is being processed | | `completed` | PDF generated successfully | | `failed` | Job failed (check error_message) | ## Polling Recommendations - Poll every 1-2 seconds for small documents - Poll every 5-10 seconds for large documents - Consider using webhooks instead of polling
102
-
# @param job_id [String]
102
+
# @param job_id [String] Async job ID (UUID returned by the create-async endpoint)
103
103
# @param [Hash] opts the optional parameters
104
104
# @return [Array<(JobStatusResponse, Integer, Hash)>] JobStatusResponse data, response status code and response headers
# List async PDF generation jobs for your team. **Authentication:** API Key required (`x-api-key` header) Supports pagination and filtering by status.
167
167
# @param [Hash] opts the optional parameters
168
-
# @option opts [Integer] :limit (default to 20)
169
-
# @option opts [Integer] :offset (default to 0)
170
-
# @option opts [JobStatus] :status
168
+
# @option opts [Integer] :limit Maximum number of results to return (default to 20)
169
+
# @option opts [Integer] :offset Number of results to skip (for pagination) (default to 0)
170
+
# @option opts [JobStatus] :status Filter jobs by status
171
171
# @return [Array<(JobListResponse, Integer, Hash)>] JobListResponse data, response status code and response headers
0 commit comments