POST v1/Article/{articleKey}/Attributes/Featured
Finds the article matching the specified articleKey and updates the "featured" attributes.
Roles Allowed
admin, editor
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| articleKey | integer |
Required |
Body Parameters
ArticleAttribute| Name | Description | Type | Additional information |
|---|---|---|---|
| ArticleKey | integer |
None. |
|
| Featured | boolean |
None. |
|
| FeaturedTitle | string |
None. |
|
| FeaturedSequence | integer |
None. |
|
| Body | string |
None. |
|
| ArchiveFeatured | boolean |
None. |
|
| ArchivePriority | integer |
None. |
|
| ImageUrl | string |
None. |
|
| EditorNotes | string |
None. |
|
| EditDate | date |
None. |
|
| EditorId | integer |
None. |
|
| EditorNotesLocation | integer |
None. |
|
| Slug | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ArticleKey": 1,
"Featured": true,
"FeaturedTitle": "sample string 2",
"FeaturedSequence": 1,
"Body": "sample string 3",
"ArchiveFeatured": true,
"ArchivePriority": 1,
"ImageUrl": "sample string 4",
"EditorNotes": "sample string 5",
"EditDate": "2025-11-03T19:48:31.7447697+00:00",
"EditorId": 1,
"EditorNotesLocation": 1,
"Slug": "sample string 6"
}
application/xml, text/xml
Sample:
<ArticleAttribute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3"> <ArchiveFeatured>true</ArchiveFeatured> <ArchivePriority>1</ArchivePriority> <ArticleKey>1</ArticleKey> <Body>sample string 3</Body> <EditDate>2025-11-03T19:48:31.7447697+00:00</EditDate> <EditorId>1</EditorId> <EditorNotes>sample string 5</EditorNotes> <EditorNotesLocation>1</EditorNotesLocation> <Featured>true</Featured> <FeaturedSequence>1</FeaturedSequence> <FeaturedTitle>sample string 2</FeaturedTitle> <ImageUrl>sample string 4</ImageUrl> <Slug>sample string 6</Slug> </ArticleAttribute>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HTTP 200 with the article if it is found, HTTP 404 if article is not found
ArticleAttribute| Name | Description | Type | Additional information |
|---|---|---|---|
| ArticleKey | integer |
None. |
|
| Featured | boolean |
None. |
|
| FeaturedTitle | string |
None. |
|
| FeaturedSequence | integer |
None. |
|
| Body | string |
None. |
|
| ArchiveFeatured | boolean |
None. |
|
| ArchivePriority | integer |
None. |
|
| ImageUrl | string |
None. |
|
| EditorNotes | string |
None. |
|
| EditDate | date |
None. |
|
| EditorId | integer |
None. |
|
| EditorNotesLocation | integer |
None. |
|
| Slug | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ArticleKey": 1,
"Featured": true,
"FeaturedTitle": "sample string 2",
"FeaturedSequence": 1,
"Body": "sample string 3",
"ArchiveFeatured": true,
"ArchivePriority": 1,
"ImageUrl": "sample string 4",
"EditorNotes": "sample string 5",
"EditDate": "2025-11-03T19:48:32.0260328+00:00",
"EditorId": 1,
"EditorNotesLocation": 1,
"Slug": "sample string 6"
}
application/xml, text/xml
Sample:
<ArticleAttribute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3"> <ArchiveFeatured>true</ArchiveFeatured> <ArchivePriority>1</ArchivePriority> <ArticleKey>1</ArticleKey> <Body>sample string 3</Body> <EditDate>2025-11-03T19:48:32.0260328+00:00</EditDate> <EditorId>1</EditorId> <EditorNotes>sample string 5</EditorNotes> <EditorNotesLocation>1</EditorNotesLocation> <Featured>true</Featured> <FeaturedSequence>1</FeaturedSequence> <FeaturedTitle>sample string 2</FeaturedTitle> <ImageUrl>sample string 4</ImageUrl> <Slug>sample string 6</Slug> </ArticleAttribute>