POST api/articles/article-ideas/new
Request Information
URI Parameters
None.
Body Parameters
NewArticleIdeasModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Keyword | string |
None. |
|
| SearchIntent | string |
None. |
|
| Category | string |
None. |
|
| ClusterName | string |
None. |
|
| Priority | integer |
None. |
|
| Status | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Title": "sample string 1",
"Keyword": "sample string 2",
"SearchIntent": "sample string 3",
"Category": "sample string 4",
"ClusterName": "sample string 5",
"Priority": 6,
"Status": "sample string 7"
}
application/xml, text/xml
Sample:
<NewArticleIdeasModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizBook.Models.New"> <Category>sample string 4</Category> <ClusterName>sample string 5</ClusterName> <Keyword>sample string 2</Keyword> <Priority>6</Priority> <SearchIntent>sample string 3</SearchIntent> <Status>sample string 7</Status> <Title>sample string 1</Title> </NewArticleIdeasModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |