Retrieves all article_status

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

article_status
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

string
is_default

boolean
color_hexadecimal_value

string
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "4d96bde7-428f-4709-bf3f-0af9fb67bb65",
  "name": "sample string 2",
  "is_default": true,
  "color_hexadecimal_value": "sample string 4",
  "modified_dateutc": "2026-01-11T23:48:40.1416785+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>4d96bde7-428f-4709-bf3f-0af9fb67bb65</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-01-11T23:48:40.141Z</modified_dateutc>
  <name>sample string 2</name>
</article_status>