In our system an article(title, description) can be created, updated an drafted.
How to draft an article in REST?
If your REST api uses for example JSON, you could just have a draft
flag on the article that can be true
or false
. Or a published
flag that is true
or false
.