Retrieves all article statuses, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of article statuses.

article_status
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of this article status.

string
is_default

Indicates this is the default status assigned to new articles.

boolean
color_hexadecimal_value

Display color (hex code, e.g. "#112233") used to render this status in the UI.

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "7cd5f297-88df-4c52-a405-f1d84c011892",
  "name": "sample string 2",
  "is_default": true,
  "color_hexadecimal_value": "sample string 4",
  "modified_dateutc": "2026-09-16T08:34:03.7554349+00:00"
}

application/xml, text/xml

Sample:
<article_status xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <color_hexadecimal_value>sample string 4</color_hexadecimal_value>
  <id>7cd5f297-88df-4c52-a405-f1d84c011892</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-09-16T08:34:03.755Z</modified_dateutc>
  <name>sample string 2</name>
</article_status>