Batches
Create large batches of API requests to run asynchronously.
Create batch
batches.create(**kwargs) -> Batch { id, completion_window, created_at, 19 more }
POST/batches
Retrieve batch
batches.retrieve(batch_id) -> Batch { id, completion_window, created_at, 19 more }
GET/batches/{batch_id}
Cancel batch
batches.cancel(batch_id) -> Batch { id, completion_window, created_at, 19 more }
POST/batches/{batch_id}/cancel
List batches
batches.list(**kwargs) -> CursorPage<Batch { id, completion_window, created_at, 19 more } >
GET/batches