Retrieves the article status schedule entry with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The article status schedule entry id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the article status schedule entry, or 404 Not Found if it doesn't exist.
article_status_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| article_id |
Article Id |
globally unique identifier | |
| article_status_id |
Article status Id |
globally unique identifier | |
| date_start_delivery |
Date start delivery |
date | |
| date_start |
Date start |
date | |
| date_end |
Date end |
date | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "a4d1ad5f-fb62-4162-a7a9-69e8bc84ad62",
"article_id": "06f3cb84-02b7-40fa-91bf-ceba542b9263",
"article_status_id": "b94af7c5-4fda-4b21-9dd2-eed2b3e5c126",
"date_start_delivery": "2026-09-16T11:02:59.6016899+00:00",
"date_start": "2026-09-16T11:02:59.6016899+00:00",
"date_end": "2026-09-16T11:02:59.6016899+00:00",
"modified_dateutc": "2026-09-16T11:02:59.6016899+00:00"
}
application/xml, text/xml
Sample:
<article_status_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>06f3cb84-02b7-40fa-91bf-ceba542b9263</article_id> <article_status_id>b94af7c5-4fda-4b21-9dd2-eed2b3e5c126</article_status_id> <date_end>2026-09-16T11:02:59.601Z</date_end> <date_start>2026-09-16T11:02:59.601Z</date_start> <date_start_delivery>2026-09-16T11:02:59.601Z</date_start_delivery> <id>a4d1ad5f-fb62-4162-a7a9-69e8bc84ad62</id> <modified_dateutc>2026-09-16T11:02:59.601Z</modified_dateutc> </article_status_list>