POST
request shall be sent to /bots/{environment}/
{botId}
/
{conversationId}
, (same way as interacting in a normal conversation in EDDI) but this time we must provide more parameters:POST
/bots/{environment}/{botId}/{conversationId}
Path
parameter):String
Deployment environment (e.g: restricted,unrestricted,test
)Path
parameter):String Id
of the bot that you wish to continue a conversation with.Path
parameter): String Id
of the conversation that you wish to send the message to.Query
parameter):Boolean
- Default : false
Will return all sub results of the entire conversation steps
, otherwise only public ones such as input, action, output & quickReplies
.Query
parameter):Boolean
- Default : true
Will return only the latest conversationStep
that has just been processed, otherwise returns all conversationSteps
since the beginning of this conversation
.JSON
object sent in the request body consists of the usual input text (message to the bot) only this time we are going to provide context
information through a key value
data structure ; the Context value must have one of the following : string,object or expressions.
JSON
object of the input data:Additional information:
http://localhost:7070/chat
to test the context parameters by providing Context Type
,Context Name
, Context Value
. see image below :