latestOpenAPI 3.0.02026-08-08100184.9 KB

91fc72cb99f6

Get article status

Retrieve the status of an article.

post/v1/get-article-status

Query parameters

api_keystring required

API key for authentication

Request body

article_idinteger required

The ID of the article to retrieve the status for.

Example request

{
  "article_id": 206088
}

Response

Successful response

idinteger

Article ID

statusstring

Status of the response

article_status'Complete' | 'In Progress' | 'Refunded'

Status of the article

article_progressinteger

Progress of the article, ranging from 0 to 100%. If completed, it will be set to null.

last_publish_statusstring

Last publish status of the article, if any.

Example response

{
  "id": 1234,
  "status": "Success",
  "article_status": "Complete",
  "article_progress": null,
  "last_publish_status": "Posted"
}