POST api/AIKnowledgeChat/LogChat?token={token}&customerID={customerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| customerID | integer |
Required |
Body Parameters
ChatBotLogEntryDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ChatBotLogEntriesID | integer |
None. |
|
| QuestionAsked | string |
None. |
|
| Answer | string |
None. |
|
| Source | string |
None. |
|
| RequestDateTime | date |
None. |
|
| CustomerID | integer |
None. |
|
| LoggedIn | boolean |
None. |
|
| SessionID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ChatBotLogEntriesID": 1,
"QuestionAsked": "sample string 2",
"Answer": "sample string 3",
"Source": "sample string 4",
"RequestDateTime": "2026-06-12T23:29:38.0730875-04:00",
"CustomerID": 6,
"LoggedIn": true,
"SessionID": "sample string 8"
}
application/xml, text/xml
Sample:
<ChatBotLogEntryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StoreDAL.DTOs"> <Answer>sample string 3</Answer> <ChatBotLogEntriesID>1</ChatBotLogEntriesID> <CustomerID>6</CustomerID> <LoggedIn>true</LoggedIn> <QuestionAsked>sample string 2</QuestionAsked> <RequestDateTime>2026-06-12T23:29:38.0730875-04:00</RequestDateTime> <SessionID>sample string 8</SessionID> <Source>sample string 4</Source> </ChatBotLogEntryDTO>
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. |