POST v1/Article/Share/Delete
Finds the article matching the specified articleKey.
Request Information
URI Parameters
None.
Body Parameters
SharedArticle| Name | Description | Type | Additional information |
|---|---|---|---|
| ShareId | integer |
None. |
|
| UserId | integer |
None. |
|
| ArticleKey | integer |
None. |
|
| Token | globally unique identifier |
None. |
|
| Created | date |
None. |
|
| Note | string |
None. |
|
| Views | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShareId": 1,
"UserId": 2,
"ArticleKey": 3,
"Token": "d2da5910-0d29-4b10-a797-de13933fcb5b",
"Created": "2026-03-10T17:05:17.3362645+00:00",
"Note": "sample string 6",
"Views": 7
}
application/xml, text/xml
Sample:
<SharedArticle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Repository.Models"> <ArticleKey>3</ArticleKey> <Created>2026-03-10T17:05:17.3362645+00:00</Created> <Note>sample string 6</Note> <ShareId>1</ShareId> <Token>d2da5910-0d29-4b10-a797-de13933fcb5b</Token> <UserId>2</UserId> <Views>7</Views> </SharedArticle>
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
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.