POST api/Ai/createChatbotReport
Request Information
URI Parameters
None.
Body Parameters
CreateChatbotReportDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IdKullanici | decimal number |
None. |
|
| IdFirma | decimal number |
None. |
|
| IdChat | string |
None. |
|
| IsResolved | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdKullanici": 1.0,
"IdFirma": 2.0,
"IdChat": "sample string 3",
"IsResolved": true
}
application/xml, text/xml
Sample:
<CreateChatbotReportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Business.AOP.Ai"> <IdChat>sample string 3</IdChat> <IdFirma>2</IdFirma> <IdKullanici>1</IdKullanici> <IsResolved>true</IsResolved> </CreateChatbotReportDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AiChatbotReportCreateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| Message | string |
None. |
|
| Success | boolean |
None. |
|
| StatusCode | integer |
None. |
|
| Result | ResultType |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"Message": "sample string 2",
"Success": true,
"StatusCode": 4,
"Result": 0,
"ErrorMessage": "sample string 5"
}
application/xml, text/xml
Sample:
<AiChatbotReportCreateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Business.Core.DataContracts.Ai"> <_x003C_ErrorMessage_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile">sample string 5</_x003C_ErrorMessage_x003E_k__BackingField> <_x003C_Result_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile">Success</_x003C_Result_x003E_k__BackingField> <Data /> <Message>sample string 2</Message> <StatusCode>4</StatusCode> <Success>true</Success> </AiChatbotReportCreateResponse>