using Bot.Rasa.Agents; using Bot.Rasa.Intents; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Text; namespace Bot.Rasa.RestApi { public class IntentController : EssentialController { /// /// User intent, a intent is connected to a dialog flow. /// /// /// /// [HttpPost("{agentId}")] public string CreateIntent([FromRoute] String agentId, [FromBody] Intent intent) { var agent = dc.Agent(agentId); return intent.Id; } } }