Retrieves the article status with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The article status id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the article status, or 404 Not Found if it doesn't exist.
article_status| Name | Description | Type | Additional 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": "e3adeb87-150e-44b0-960d-f6a99cf16b18",
"name": "sample string 2",
"is_default": true,
"color_hexadecimal_value": "sample string 4",
"modified_dateutc": "2026-09-16T09:22:54.0074813+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>e3adeb87-150e-44b0-960d-f6a99cf16b18</id> <is_default>true</is_default> <modified_dateutc>2026-09-16T09:22:54.007Z</modified_dateutc> <name>sample string 2</name> </article_status>