latestOpenAPI 3.0.02026-08-08100184.9 KB

91fc72cb99f6

Get bulk article status

Retrieve the status of multiple articles in bulk.

post/v1/get-bulk-article-status

Query parameters

api_keystring required

API key for authentication

Request body

batch_idinteger required

The ID of the batch for which the article status is to be retrieved.

Example request

{
  "batch_id": 133
}

Response

Successful response

statusstring

The status of the response

Example response

{
  "status": "Success",
  "result": [
    {
      "id": 5148,
      "article_status": "Complete",
      "article_progress": null,
      "last_publish_status": "Posted"
    },
    {
      "id": 5149,
      "article_status": "In Progress",
      "article_progress": 80,
      "last_publish_status": null
    }
  ]
}