Skip to content

The Story Scheduling Object

This is an object representing a story schedule. This object stores the information about the publishing schedule of a story.

  • id number

    The numeric ID

  • space_id number

    Numeric ID of a space

  • story_id number

    ID of the story

  • language string

    The lang code

  • publish_at string

    The publishing date (Format: yyyy-MM-dd’T’HH:mm:ssZ)

  • status string

    Status of the scheduling. Can be published_before_schedule, or scheduled.

  • deleted_at string

    Deleted date (Format: YYYY-mm-dd HH:MM)

  • created_at string

    Creation date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

  • updated_at string

    Latest 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"
}