POST api/Ai/chatbotFeedback

Request Information

URI Parameters

None.

Body Parameters

AiChatbotFeedbackRequestDto
NameDescriptionTypeAdditional information
UserId

string

None.

SessionId

string

None.

Rating

string

None.

Comment

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "SessionId": "sample string 2",
  "Rating": "sample string 3",
  "Comment": "sample string 4"
}

application/xml, text/xml

Sample:
<AiChatbotFeedbackRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.ExternalSevices.IsNet">
  <Comment>sample string 4</Comment>
  <Rating>sample string 3</Rating>
  <SessionId>sample string 2</SessionId>
  <UserId>sample string 1</UserId>
</AiChatbotFeedbackRequestDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AiChatbotFeedbackRequestDto'.

Response Information

Resource Description

AiChatbotFeedbackResponseDto
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

ErrorMessage

string

None.

Data

Object

None.

StatusCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "ErrorMessage": "sample string 3",
  "Data": {},
  "StatusCode": 5
}

application/xml, text/xml

Sample:
<AiChatbotFeedbackResponseDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.ExternalSevices.IsNet">
  <Data />
  <ErrorMessage>sample string 3</ErrorMessage>
  <Message>sample string 2</Message>
  <StatusCode>5</StatusCode>
  <Success>true</Success>
</AiChatbotFeedbackResponseDto>