Docs
Publish status

Publish Status

Publish status can be enabled during data model creation. Depending on the publication status set, it will determine if the data rows will be included in the API response.

Publish Status Fields

A status field is created by default. It is referenced from the statusField in the data model, and its value can be changed later.

Field Value

By default, draft, published, and archived are created. There are referenced by draftValue, publishedValue, and archivedValue in the data model and can be changed later.

Even if such a data line is stored

idtitlestatus
1article1draft
2article2published
3article3drafted

In fact, the response is as follows

{
  "data": [
    {
      "id": 2,
      "title": "article2",
      "status": "published"
    }
  ]
}