The Story Scheduling Object
This is an object representing a story schedule. This object stores the information about the publishing schedule of a story.
Properties
-
id
numberThe numeric ID
-
space_id
numberNumeric ID of a space
-
story_id
numberID of the story
-
language
stringThe lang code
-
publish_at
stringThe publishing date (Format: yyyy-MM-dd'T'HH:mm:ssZ)
-
status
stringStatus of the scheduling. Can be
published_before_schedule
, orscheduled
. -
deleted_at
stringDeleted date (Format: YYYY-mm-dd HH:MM)
-
created_at
stringCreation date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
updated_at
stringLatest update date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
)
Example Object
{
"id": 2342,
"space_id": 233027,
"story_id": 314931981,
"user_id": 110930,
"language": "",
"publish_at": "2024-04-27T10:12:00.000Z",
"status": "published_before_schedule",
"deleted_at": null,
"created_at": "2024-04-26T09:42:34.179Z",
"updated_at": "2024-04-26T09:45:39.262Z"
}