Classify
Create Classify Job
classify.create(ClassifyCreateParams**kwargs) -> ClassifyCreateResponse
POST/api/v2/classify
List Classify Jobs
classify.list(ClassifyListParams**kwargs) -> SyncPaginatedCursor[ClassifyListResponse]
GET/api/v2/classify
Get Classify Job
classify.get(strjob_id, ClassifyGetParams**kwargs) -> ClassifyGetResponse
GET/api/v2/classify/{job_id}
ModelsExpand Collapse
class ClassifyCreateRequest: …
class ClassifyCreateRequest: …
Request to create a classify job.
configuration: Optional[ClassifyConfiguration]
configuration: Optional[ClassifyConfiguration]
webhook_configurations: Optional[List[WebhookConfiguration]]
webhook_configurations: Optional[List[WebhookConfiguration]]
Outbound webhook endpoints to notify on job status changes
webhook_events: Optional[List[Literal["extract.pending", "extract.success", "extract.error", 20 more]]]
webhook_events: Optional[List[Literal["extract.pending", "extract.success", "extract.error", 20 more]]]
Events to subscribe to (e.g. ‘parse.success’, ‘extract.error’). If null, all events are delivered.
One of the following:
webhook_headers: Optional[Dict[str, str]]
webhook_headers: Optional[Dict[str, str]]
Custom HTTP headers sent with each webhook request (e.g. auth tokens)
class ClassifyCreateResponse: …
class ClassifyCreateResponse: …
class ClassifyListResponse: …
class ClassifyListResponse: …
class ClassifyGetResponse: …
class ClassifyGetResponse: …