Zernio
Zernio
API Reference

Queue

List schedulesGETCreate schedulePOSTGet next available slotGETUpdate schedulePUTDelete scheduleDELETEPreview upcoming slotsGET
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Queue

Preview upcoming slots

Returns the next N upcoming queue slot times for a profile as ISO datetime strings.


GET
/v1/queue/preview

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.

In: header

Query Parameters

profileId*string
queueId?string

Filter by specific queue ID. Omit to use the default queue.

count?integer
Range1 <= value <= 100
Default20

Response Body

application/json

application/json

{  "profileId": "64f0a1b2c3d4e5f6a7b8c9d0",  "count": 10,  "slots": [    "2024-11-04T09:00:00-05:00",    "2024-11-04T14:00:00-05:00",    "2024-11-06T09:00:00-05:00",    "2024-11-08T10:00:00-05:00",    "2024-11-11T09:00:00-05:00",    "2024-11-11T14:00:00-05:00",    "2024-11-13T09:00:00-05:00",    "2024-11-15T10:00:00-05:00",    "2024-11-18T09:00:00-05:00",    "2024-11-18T14:00:00-05:00"  ]}
Was this page helpful?

Delete schedule

Delete a queue from a profile. Pass queueId to delete a specific queue; omit it to delete all queues for the profile. If deleting the default queue, another queue will be promoted to default.

Get upload URL

Get a presigned URL to upload files directly to cloud storage (up to 5GB). Returns an uploadUrl and publicUrl. PUT your file to the uploadUrl, then use the publicUrl in your posts.