POST api/tools/chat-bot-response

Request Information

URI Parameters

None.

Body Parameters

ChatBotRequest
NameDescriptionTypeAdditional information
ChatId

string

None.

UserMessage

string

None.

UserEmail

string

None.

History

Collection of ChatBotMessage

None.

Request Formats

application/json, text/json

Sample:
{
  "chatId": "sample string 1",
  "userMessage": "sample string 2",
  "userEmail": "sample string 3",
  "history": [
    {
      "role": "sample string 1",
      "text": "sample string 2"
    },
    {
      "role": "sample string 1",
      "text": "sample string 2"
    }
  ]
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.