Schedule object

Attributes

idstring

Unique identifier for the schedule

namestring

Name to identify the schedule

scheduledAtstring

ISO 8601 timestamp when the schedule should execute

statusstring

Status of the schedule. Can be "Pending", "Completed", or "Failed"

endpointstring

The URL that will be called when the schedule executes

datarecord | null

Optional JSON payload that will be sent with the request

tagsstring[]

Optional array of tags to organize schedules

createdAtstring

ISO 8601 timestamp of when the schedule was created

Schedule Object
{
  "id": "49d10214-f4f1-497a-94b7-c0e597ad3fea",
  "name": "My Schedule",
  "scheduledAt": "2024-03-20T15:00:00Z",
  "status": "Pending",
  "endpoint": "https://www.example.com/api/webhook",
  "data": {
    "userId": "123"
  },
  "tags": [
    "tag1",
    "tag2"
  ],
  "createdAt": "2024-03-19T10:30:00Z"
}