POST api/ArticleDelete
Request Information
URI Parameters
None.
Body Parameters
ArticleModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ArticleId | integer |
None. |
|
| UserId | integer |
None. |
|
| CategoryId | integer |
None. |
|
| Category | string |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
|
| VideoLink | string |
None. |
|
| PicData | string |
None. |
|
| DocData | string |
None. |
|
| CREATEDBY | integer |
None. |
|
| IsVerified | integer |
None. |
|
| IsVerifiedShow | string |
None. |
|
| MODIFIEDBY | integer |
None. |
|
| Operation | string |
None. |
|
| UserName | string |
None. |
|
| DateShow | string |
None. |
|
| NoComment | integer |
None. |
|
| NoLike | integer |
None. |
|
| IsLike | integer |
None. |
|
| Status | character |
None. |
Request Formats
application/json, text/json
Sample:
{
"ArticleId": 1,
"UserId": 2,
"CategoryId": 3,
"Category": "sample string 4",
"Title": "sample string 5",
"Description": "sample string 6",
"VideoLink": "sample string 7",
"PicData": "sample string 8",
"DocData": "sample string 9",
"CREATEDBY": 10,
"IsVerified": 11,
"IsVerifiedShow": "sample string 12",
"MODIFIEDBY": 13,
"Operation": "sample string 14",
"UserName": "sample string 15",
"DateShow": "sample string 16",
"NoComment": 17,
"NoLike": 18,
"IsLike": 19,
"Status": "A"
}
application/xml, text/xml
Sample:
<ArticleModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DecstopAPI.Models"> <ArticleId>1</ArticleId> <CREATEDBY>10</CREATEDBY> <Category>sample string 4</Category> <CategoryId>3</CategoryId> <DateShow>sample string 16</DateShow> <Description>sample string 6</Description> <DocData>sample string 9</DocData> <IsLike>19</IsLike> <IsVerified>11</IsVerified> <IsVerifiedShow>sample string 12</IsVerifiedShow> <MODIFIEDBY>13</MODIFIEDBY> <NoComment>17</NoComment> <NoLike>18</NoLike> <Operation>sample string 14</Operation> <PicData>sample string 8</PicData> <Status>65</Status> <Title>sample string 5</Title> <UserId>2</UserId> <UserName>sample string 15</UserName> <VideoLink>sample string 7</VideoLink> </ArticleModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Result | string |
None. |
|
| newResult | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Result": "sample string 2",
"newResult": "sample string 3"
}
application/xml, text/xml
Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DecstopAPI.Models"> <Id>1</Id> <Result>sample string 2</Result> <newResult>sample string 3</newResult> </ResultModel>