POST api/KnowledgeBase/SaveKnowledgeBase
Request Information
URI Parameters
None.
Body Parameters
KnowledgeBase| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Question | string |
None. |
|
| Answer | string |
None. |
|
| QuestionAskedBy | integer |
None. |
|
| QuestionAskedDateTime | date |
None. |
|
| AnsweredBy | integer |
None. |
|
| Name | string |
None. |
|
| CategoryId | integer |
None. |
|
| AnsweredByDateTime | date |
None. |
|
| DeltedDate | date |
None. |
|
| ColumnName | string |
None. |
|
| SortDirection | string |
None. |
|
| CategoryName | string |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| Value | Object |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Question": "sample string 2",
"Answer": "sample string 3",
"QuestionAskedBy": 1,
"QuestionAskedDateTime": "2025-12-28T14:49:10.6357185+02:00",
"AnsweredBy": 4,
"Name": "sample string 5",
"CategoryId": 6,
"AnsweredByDateTime": "2025-12-28T14:49:10.6357185+02:00",
"DeltedDate": "2025-12-28T14:49:10.6357185+02:00",
"ColumnName": "sample string 8",
"SortDirection": "sample string 9",
"CategoryName": "sample string 10",
"IsSuccess": true,
"Message": "sample string 12",
"Value": {}
}
application/xml, text/xml
Sample:
<KnowledgeBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain"> <IsSuccess>true</IsSuccess> <Message>sample string 12</Message> <Value /> <Answer>sample string 3</Answer> <AnsweredBy>4</AnsweredBy> <AnsweredByDateTime>2025-12-28T14:49:10.6357185+02:00</AnsweredByDateTime> <CategoryId>6</CategoryId> <CategoryName>sample string 10</CategoryName> <ColumnName>sample string 8</ColumnName> <DeltedDate>2025-12-28T14:49:10.6357185+02:00</DeltedDate> <ID>1</ID> <Name>sample string 5</Name> <Question>sample string 2</Question> <QuestionAskedBy>1</QuestionAskedBy> <QuestionAskedDateTime>2025-12-28T14:49:10.6357185+02:00</QuestionAskedDateTime> <SortDirection>sample string 9</SortDirection> </KnowledgeBase>
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. |