Rasa - Server Endpoints | Rasa Documentation

Skip to main content

Build your first agent in just a few minutes with Rasa Copilot.

API docs by Redocly](https://redocly.com/redoc/)

Rasa - Server Endpoints (1.0.0)

Download OpenAPI specification: Download

The Rasa server provides endpoints to retrieve trackers of conversations as well as endpoints to modify them. Additionally, endpoints for training and testing models are provided.

tag/Server-Information Server Information

tag/Server-Information/operation/getHealth Health endpoint of Rasa Server

This URL can be used as an endpoint to run health checks against. When the server is running this will return 200.

Responses

200

Up and running

get/

Local development server

http://localhost:5005/

Response samples

Content type

text/plain

Copy

Hello from Rasa: 1.0.0

tag/Server-Information/operation/getLicense Information about your Rasa Pro License

Returns the license information about your Rasa Pro License

Responses

200

Rasa Pro License Information

get/license

Local development server

http://localhost:5005/license

Response samples

Content type

application/json

Copy

`{"id": "u5fn8888-e213-4c12-9542-0baslfdkjas",

"company": "acme",

"scope": "rasa:pro rasa:voice",

"email": "acme@email.com",

"expires": "2026-01-01T00:00:00+00:00"

}`

tag/Server-Information/operation/getVersion Version of Rasa

Returns the version of Rasa.

Responses

200

Version of Rasa

get/version

Local development server

http://localhost:5005/version

Response samples

Content type

application/json

Copy

`{"version": "1.0.0",

"minimum_compatible_version": "1.0.0"

}`

tag/Server-Information/operation/getStatus Status of the Rasa server

Information about the server and the currently loaded Rasa model.

Authorizations:

TokenAuth__JWT

Responses

200

Success

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

get/status

Local development server

http://localhost:5005/status

Response samples

Content type

application/json

Copy

`{"model_id": "75a985b7b86d442ca013d61ea4781b22",

"model_file": "20190429-103105.tar.gz",

"num_active_training_jobs": 2

}`

tag/Tracker Tracker

tag/Tracker/operation/getConversationTracker Retrieve a conversations tracker

The tracker represents the state of the conversation. The state of the tracker is created by applying a sequence of events, which modify the state. These events can optionally be included in the response.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation
query Parameters
include_events string
Default: "AFTER_RESTART"
Enum:"ALL""APPLIED""AFTER_RESTART""NONE"
Example: include_events=AFTER_RESTART
Specify which events of the tracker the response should contain.
- ALL - every logged event.

- APPLIED - only events that contribute to the trackers state. This excludes reverted utterances and actions that got undone.

- AFTER_RESTART - all events since the last restarted event.
This includes utterances that got reverted and actions that got undone.

- NONE - no events.
until number
Default: "None"
Example: until=1559744410
All events previous to the passed timestamp will be replayed. Events that occur exactly at the target time will be included.

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

get/conversations/{conversation_id}/tracker

Local development server

http://localhost:5005/conversations/{conversation\_id}/tracker

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"events": [{"event": "user",

"timestamp": 1774447464.622012,

"metadata": {"session_id": "eed351b9-a996-4bb8-83ea-1d18e7cd4905",

"model_id": "80687713793f4d07957e8e51f73df866",

"assistant_id": "my-assistant"

},

"text": "string",

"input_channel": "string",

"message_id": "string",

"parse_data": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"anonymized_at": "string"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

}`

tag/Tracker/operation/deleteConversationTracker Delete tracker for a specific conversation

Deletes the tracker of a conversation.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation

Responses

204

Tracker successfully deleted.

401

User is not authenticated.

403

User has insufficient permission.

404

Conversation not found.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

delete/conversations/{conversation_id}/tracker

Local development server

http://localhost:5005/conversations/{conversation\_id}/tracker

Response samples

Content type

application/json

Copy

`{"version": "1.0.0",

"status": "failure",

"reason": "NotAuthenticated",

"message": "User is not authenticated to access resource.",

"code": 401

}`

tag/Tracker/operation/getUserTrackers Retrieve all conversations for a user

Retrieves all conversation trackers for a given user with pagination. All the event data is returned. Requires admin authentication (token or JWT with role set to admin).

Tracker data is read directly from storage as serialized event dicts without replaying conversation history through DialogueStateTracker. This keeps response latency constant regardless of conversation volume.

The current_session_id field in each returned tracker is derived from the metadata of the last stored event. It is null when the last event is ConversationInactive.

Use this endpoint in a backend service to control what data is exposed to clients. Direct client access should be avoided to maintain security and control over sensitive user data.

Authorizations:

TokenAuth__JWT

path Parameters
user_id
required
string
Example: user-123
Unique identifier of the user to retrieve conversations for
query Parameters
limit integer
Example: limit=50
Maximum number of conversations to return (for pagination)
offset integer
Example: offset=5
Number of conversations to skip (for pagination)

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

get/users/{user_id}/trackers

Local development server

http://localhost:5005/users/{user\_id}/trackers

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"conversations": [{"sender_id": "e6a3b3158a8444dd998aab17b9e1af3c",

"user_id": "load-test-user-C",

"conversation_started_timestamp": 1774447463.67712,

"current_session_id": "eed351b9-a996-4bb8-83ea-1d18e7cd4905",

"events": [{"event": "user",

"timestamp": 1774447464.622012,

"metadata": {"session_id": "eed351b9-a996-4bb8-83ea-1d18e7cd4905",

"model_id": "80687713793f4d07957e8e51f73df866",

"assistant_id": "my-assistant"

},

"text": "string",

"input_channel": "string",

"message_id": "string",

"parse_data": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"anonymized_at": "string"

}

]

}

],

"limit": 50,

"offset": 5

}`

tag/Tracker/operation/addConversationTrackerEvents Append events to a tracker

Appends one or multiple new events to the tracker state of the conversation. Any existing events will be kept and the new events will be appended, updating the existing state. If events are appended to a new conversation ID, the tracker will be initialised with a new session.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation
query Parameters
Request Body schema: application/json required

One of

EventEventList

Any of

UserEventBotEventSessionStartedEventActionEventSlotEventResetSlotsEventRestartEventReminderEventCancelReminderEventPauseEventResumeEventFollowupEventExportEventUndoEventRewindEventAgentEventEntitiesAddedEventUserFeaturizationEventActionExecutionRejectedEventFormValidationEventLoopInterruptedEventFormEventActiveLoopEventStackEventFlowStartedEventFlowCompletedEvent

event
required
string
Value:"user"
Event name
timestamp number
Unix timestamp (float) of when the event was applied.
metadata object
Arbitrary metadata attached to the event by the channel or model, e.g. session_id, model_id, assistant_id, model_name.
text string or null
Text of user message.
input_channel string or null
message_id string or null
parse_data object (ParseResult)
NLU parser information. If set, message will not be passed through NLU, but instead this parsing information will be used.
anonymized_at string or null
ISO 8601 timestamp of when PII in this event was anonymized, or null if the event has not been anonymized.

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/conversations/{conversation_id}/tracker/events

Local development server

http://localhost:5005/conversations/{conversation\_id}/tracker/events

Request samples

Content type

application/json

Example

EventEventListEvent

Copy Expand all Collapse all

`{"event": "user",

"timestamp": 1774447464.622012,

"metadata": {"session_id": "eed351b9-a996-4bb8-83ea-1d18e7cd4905",

"model_id": "80687713793f4d07957e8e51f73df866",

"assistant_id": "my-assistant"

},

"text": "string",

"input_channel": "string",

"message_id": "string",

"parse_data": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"anonymized_at": "string"

}`

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

}`

tag/Tracker/operation/replaceConversationTrackerEvents Replace a trackers events

Replaces all events of a tracker with the passed list of events. This endpoint should not be used to modify trackers in a production setup, but rather for creating training data.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation
query Parameters
Request Body schema: application/json required

Array

Any of

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

put/conversations/{conversation_id}/tracker/events

Local development server

http://localhost:5005/conversations/{conversation\_id}/tracker/events

Request samples

Content type

application/json

Copy Expand all Collapse all

[{"event": "user",\ \ "timestamp": 1774447464.622012,\ \ "metadata": {"session_id": "eed351b9-a996-4bb8-83ea-1d18e7cd4905",\ \ "model_id": "80687713793f4d07957e8e51f73df866",\ \ "assistant_id": "my-assistant"\ \ },\ \ "text": "string",\ \ "input_channel": "string",\ \ "message_id": "string",\ \ "parse_data": {"entities": [{"start": 0,\ \ "end": 0,\ \ "value": "string",\ \ "entity": "string",\ \ "confidence": 0\ \ }\ \ ],\ \ "intent": {"confidence": 0.6323,\ \ "name": "greet"\ \ },\ \ "intent_ranking": [{"confidence": 0.6323,\ \ "name": "greet"\ \ }\ \ ],\ \ "text": "Hello!",\ \ "message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",\ \ "metadata": { },\ \ "commands": [{"command": "start flow",\ \ "flow": "transfer_money"\ \ }\ \ ],\ \ "flows_from_semantic_search": [["transfer_money",\ \ 0.9035494923591614\ \ ]\ \ ],\ \ "flows_in_prompt": ["transfer_money"\ \ ]\ \ },\ \ "anonymized_at": "string"\ \ }\ \ ]

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

}`

tag/Tracker/operation/getConversationStory Retrieve an end-to-end story corresponding to a conversation

The story represents the whole conversation in end-to-end format. This can be posted to the '/test/stories' endpoint and used as a test.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation
query Parameters
until number
Default: "None"
Example: until=1559744410
All events previous to the passed timestamp will be replayed. Events that occur exactly at the target time will be included.
all_sessions boolean
Default: false
Whether to fetch all sessions in a conversation, or only the latest session
- true - fetch all conversation sessions.
- false - [default] fetch only the latest conversation session.

Responses

200

Success

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

get/conversations/{conversation_id}/story

Local development server

http://localhost:5005/conversations/{conversation\_id}/story

Response samples

Content type

text/yml

Copy

- story: story_00055028
  steps:
  - user: |
      hello
    intent: greet
  - action: utter_ask_howcanhelp
  - user: |
      I'm looking for a [moderately priced]{"entity": "price", "value": "moderate"} [Indian]{"entity": "cuisine"} restaurant for [two]({"entity": "people"}) people
    intent: inform
  - action: utter_on_it
  - action: utter_ask_location

tag/Tracker/operation/executeConversationAction Run an action in a conversation Deprecated

DEPRECATED. Runs the action, calling the action server if necessary. Any responses sent by the executed action will be forwarded to the channel specified in the output_channel parameter. If no output channel is specified, any messages that should be sent to the user will be included in the response of this endpoint.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation
query Parameters
Request Body schema: application/json required
name
required
string
Name of the action to be executed.
policy string or null
Name of the policy that predicted the action.
confidence number or null
Confidence of the prediction.

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/conversations/{conversation_id}/execute

Local development server

http://localhost:5005/conversations/{conversation\_id}/execute

Request samples

Content type

application/json

Copy

`{"name": "utter_greet",

"policy": "string",

"confidence": 0.987232

}`

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"tracker": {"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

},

"messages": [{"recipient_id": "string",

"text": "string",

"image": "string",

"buttons": [{"title": "string",

"payload": "string"

}

],

"attachement": [{"title": "string",

"payload": "string"

}

]

}

]

}`

tag/Tracker/operation/triggerConversationIntent Inject an intent into a conversation

Sends a specified intent and list of entities in place of a user message. The bot then predicts and executes a response action. Any responses sent by the executed action will be forwarded to the channel specified in the output_channel parameter. If no output channel is specified, any messages that should be sent to the user will be included in the response of this endpoint.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation
query Parameters
Request Body schema: application/json required
name
required
string
Name of the intent to be executed.
entities object or null
Entities to be passed on.

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/conversations/{conversation_id}/trigger_intent

Local development server

http://localhost:5005/conversations/{conversation\_id}/trigger\_intent

Request samples

Content type

application/json

Copy Expand all Collapse all

`{"name": "greet",

"entities": {"temperature": "high"

}

}`

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"tracker": {"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

},

}`

tag/Tracker/operation/predictConversationAction Predict the next action

Runs the conversations tracker through the model's policies to predict the scores of all actions present in the model's domain. Actions are returned in the 'scores' array, sorted on their 'score' values. The state of the tracker is not modified.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/conversations/{conversation_id}/predict

Local development server

http://localhost:5005/conversations/{conversation\_id}/predict

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"scores": [{"action": "utter_greet",

"score": 1

}

],

"policy": "policy_2_TEDPolicy",

"confidence": 0.057,

"tracker": {"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

}

}`

tag/Tracker/operation/addConversationMessage Add a message to a tracker

Adds a message to a tracker. This doesn't trigger the prediction loop. It will log the message on the tracker and return, no actions will be predicted or run. This is often used together with the predict endpoint.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation
query Parameters
Request Body schema: application/json required
text
required
string
Message text
sender
required
string
Value:"user"
Origin of the message - who sent it
parse_data object (ParseResult)
NLU parser information. If set, message will not be passed through NLU, but instead this parsing information will be used.

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/conversations/{conversation_id}/messages

Local development server

http://localhost:5005/conversations/{conversation\_id}/messages

Request samples

Content type

application/json

Copy Expand all Collapse all

`{"text": "Hello!",

"sender": "user",

"parse_data": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

}

}`

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

}`

tag/Tracker/operation/getConversationCapabilities Retrieve capabilities for a conversation

Returns structured, conversation-aware capabilities metadata for all flows, including whether each flow is currently startable based on guard evaluation for the given conversation state. This endpoint is intended for use by custom actions and external integrations to build dynamic "what can you do?" responses without hard-coded flow lists.

Authorizations:

TokenAuth__JWT

path Parameters
conversation_id
required
string
Example: default
Id of the conversation

Responses

200

Success

401

User is not authenticated.

403

User has insufficient permission.

404

Conversation not found.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

get/conversations/{conversation_id}/capabilities

Local development server

http://localhost:5005/conversations/{conversation\_id}/capabilities

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"flows": [{"id": "transfer_money",

"name": "Transfer Money",

"description": "Transfer money to another account.",

"guard_condition": null,

"startable": true,

"always_include_in_prompt": false,

"trigger_intents": ["transfer_money"

]

},

{"id": "check_balance",

"name": "Check Balance",

"description": "Check your current account balance.",

"guard_condition": "has_verified_account",

"startable": false,

"always_include_in_prompt": false,

"trigger_intents": ["check_balance",

"check_my_balance"

]

}

]

}`

tag/Model Model

tag/Model/operation/trainModel Train a Rasa model

Trains a new Rasa model. Depending on the data given only a dialogue model, only a NLU model, or a model combining a trained dialogue model with an NLU model will be trained. The new model is not loaded by default.

Authorizations:

TokenAuth__JWT

query Parameters
save_to_default_model_directory boolean
Default: true
If true (default) the trained model will be saved in the default model directory, if false it will be saved in a temporary directory
force_training boolean
Default: false
Force a model training even if the data has not changed
augmentation string
Default: 50
How much data augmentation to use during training
num_threads string
Default: 1
Maximum amount of threads to use when training
callback_url string
Default: "None"
Example: callback_url=https://example.com/rasa\_evaluations
If specified the call will return immediately with an empty response and status code 204. The actual result or any errors will be sent to the given callback URL as the body of a post request.
Request Body schema: application/yaml required

The training data should be in YAML format.

pipeline Array of arrays
Pipeline list
policies Array of arrays
Policies list
entities Array of arrays
Entity list
slots Array of arrays
Slots list
actions Array of arrays
Action list
forms Array of arrays
Forms list
e2e_actions Array of arrays
E2E Action list
responses object
Bot response templates
session_config object
Session configuration options
nlu Array of arrays
Rasa NLU data, array of intents
rules Array of arrays
Rule list
stories Array of arrays
Rasa Core stories in YAML format
flows object
Rasa Pro flows in YAML format
force boolean
Deprecated
Force a model training even if the data has not changed
save_to_default_model_directory boolean
Deprecated
If true (default) the trained model will be saved in the default model directory, if false it will be saved in a temporary directory

Responses

200

Zipped Rasa model

204

The incoming request specified a callback_url and hence the request will return immediately with an empty response. The actual response will be sent to the provided callback_url via POST request.

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

500

An unexpected error occurred.

post/model/train

Local development server

http://localhost:5005/model/train

Request samples

Content type

application/yaml

Copy

pipeline: []

policies: []

intents:
  - greet
  - goodbye

entities: []

slots:
  contacts_list:
    type: text
    mappings:
      - type: custom
        action: list_contacts

actions:
  - list_contacts

forms: {}
e2e_actions: []

responses:
  utter_greet:
  - text: "Hey! How are you?"

utter_goodbye:
  - text: "Bye"

utter_list_contacts:
  - text: "You currently have the following contacts:\n{contacts_list}"

utter_no_contacts:
  - text: "You have no contacts in your list."

session_config:
  session_expiration_time: 60
  carry_over_slots_to_new_session: true

nlu:
- intent: greet
  examples: |
    - hey
    - hello

- intent: goodbye
  examples: |
    - bye
    - goodbye

rules:

- rule: Say goodbye anytime the user says goodbye
  steps:
  - intent: goodbye
  - action: utter_goodbye

stories:

- story: happy path
  steps:
  - intent: greet
  - action: utter_greet
  - intent: goodbye
  - action: utter_goodbye

flows:
   list_contacts:
      name: list your contacts
      description: show your contact list
      steps:
        - action: list_contacts
          next:
          - if: "slots.contacts_list"
            then:
              - action: utter_list_contacts
                next: END
          - else:
              - action: utter_no_contacts
                next: END

Response samples

Content type

application/json

Copy

`{"version": "1.0.0",

"status": "failure",

"reason": "BadRequest",

"code": 400

}`

tag/Model/operation/testModelStories Evaluate stories

Evaluates one or multiple stories against the currently loaded Rasa model.

Authorizations:

TokenAuth__JWT

query Parameters
e2e boolean
Default: false
Perform an end-to-end evaluation on the posted stories.
Request Body schema: text/yml required

string (StoriesTrainingData)

Rasa Core stories in YAML format

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/model/test/stories

Local development server

http://localhost:5005/model/test/stories

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"actions": [{"action": "utter_ask_howcanhelp",

"predicted": "utter_ask_howcanhelp",

"policy": "policy_0_MemoizationPolicy",

"confidence": 1

}

],

"is_end_to_end_evaluation": true,

"precision": 1,

"f1": 0.9333333333333333,

"accuracy": 0.9,

"in_training_data_fraction": 0.8571428571428571,

"report": {"conversation_accuracy": {"accuracy": 0.19047619047619047,

"correct": 18,

"with_warnings": 1,

"total": 20

},

"property1": {"intent_name": "string",

"classification_report": {"greet": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100,

"confused_with": {"chitchat": 3,

"nlu_fallback": 5

}

},

"micro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"macro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"weightedq avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

}

}

},

"property2": {"intent_name": "string",

"classification_report": {"greet": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100,

"confused_with": {"chitchat": 3,

"nlu_fallback": 5

}

},

"micro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"macro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"weightedq avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

}

}

}

}

}`

tag/Model/operation/testModelIntent Perform an intent evaluation

Evaluates NLU model against a model or using cross-validation.

Authorizations:

TokenAuth__JWT

query Parameters
model string
Example: model=rasa-model.tar.gz
Model that should be used for evaluation. If the parameter is set, the model will be fetched with the currently loaded configuration setup. However, the currently loaded model will not be updated. The state of the server will not change. If the parameter is not set, the currently loaded model will be used for the evaluation.
callback_url string
Default: "None"
Example: callback_url=https://example.com/rasa\_evaluations
If specified the call will return immediately with an empty response and status code 204. The actual result or any errors will be sent to the given callback URL as the body of a post request.
cross_validation_folds integer
Default: null
Number of cross validation folds. If this parameter is specified the given training data will be used for a cross-validation instead of using it as test set for the specified model. Note that this is only supported for YAML data.
Request Body schema: application/x-yamlapplication/jsonapplication/x-yaml required

string

NLU training data and model configuration. The model configuration is only required if cross-validation is used.

Responses

200

NLU evaluation result

204

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/model/test/intents

Local development server

http://localhost:5005/model/test/intents

Request samples

Content type

application/x-yamlapplication/jsonapplication/x-yaml

No sample

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"intent_evaluation": {"report": {"greet": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100,

"confused_with": {"chitchat": 3,

"nlu_fallback": 5

}

},

"micro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"macro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"weightedq avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

}

},

"accuracy": 0.19047619047619047,

"f1_score": 0.06095238095238095,

"precision": 0.036281179138321996,

"predictions": [{"intent": "greet",

"predicted": "greet",

"text": "hey",

"confidence": 0.9973567

}

],

"errors": [{"text": "are you alright?",

"intent_response_key_target": "string",

"intent_response_key_prediction": {"confidence": 0.6323,

"name": "greet"

}

}

]

},

"response_selection_evaluation": {"report": {"greet": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100,

"confused_with": {"chitchat": 3,

"nlu_fallback": 5

}

},

"micro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"macro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"weightedq avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

}

},

"accuracy": 0.19047619047619047,

"f1_score": 0.06095238095238095,

"precision": 0.036281179138321996,

"predictions": [{"intent": "greet",

"predicted": "greet",

"text": "hey",

"confidence": 0.9973567

}

],

},

"entity_evaluation": {"property1": {"report": {"greet": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100,

"confused_with": {"chitchat": 3,

"nlu_fallback": 5

}

},

"micro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"macro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"weightedq avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

}

},

"accuracy": 0.19047619047619047,

"f1_score": 0.06095238095238095,

"precision": 0.036281179138321996,

"predictions": [{"intent": "greet",

"predicted": "greet",

"text": "hey",

"confidence": 0.9973567

}

],

},

"property2": {"report": {"greet": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100,

"confused_with": {"chitchat": 3,

"nlu_fallback": 5

}

},

"micro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"macro avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

},

"weightedq avg": {"precision": 0.123,

"recall": 0.456,

"f1-score": 0.12,

"support": 100

}

},

"accuracy": 0.19047619047619047,

"f1_score": 0.06095238095238095,

"precision": 0.036281179138321996,

"predictions": [{"intent": "greet",

"predicted": "greet",

"text": "hey",

"confidence": 0.9973567

}

],

}

}

}`

tag/Model/operation/predictModelAction Predict an action on a temporary state

Predicts the next action on the tracker state as it is posted to this endpoint. Rasa will create a temporary tracker from the provided events and will use it to predict an action. No messages will be sent and no action will be run.

Authorizations:

TokenAuth__JWT

query Parameters
Request Body schema: application/json required

Array

Any of

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

409

The request conflicts with the currently loaded model.

500

An unexpected error occurred.

post/model/predict

Local development server

http://localhost:5005/model/predict

Request samples

Content type

application/json

Copy Expand all Collapse all

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"scores": [{"action": "utter_greet",

"score": 1

}

],

"policy": "policy_2_TEDPolicy",

"confidence": 0.057,

"tracker": {"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

}

}`

tag/Model/operation/parseModelMessage Parse a message using the Rasa model

Predicts the intent and entities of the message posted to this endpoint. No messages will be stored to a conversation and no action will be run. This will just retrieve the NLU parse results.

Authorizations:

TokenAuth__JWT

query Parameters
emulation_mode string
Enum:"WIT""LUIS""DIALOGFLOW"
Example: emulation_mode=LUIS
Specify the emulation mode to use. Emulation mode transforms the response JSON to the format expected by the service specified as the emulation_mode. Requests must still be sent in the regular Rasa format.
Request Body schema: application/json required
text string
Message to be parsed
message_id string
Optional ID for message to be parsed

Responses

200

Success

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

500

An unexpected error occurred.

post/model/parse

Local development server

http://localhost:5005/model/parse

Request samples

Content type

application/json

Copy

`{"text": "Hello, I am Rasa!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a"

}`

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"text": "Hello!",

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

]

}`

tag/Model/operation/replaceModel Replace the currently loaded model

Updates the currently loaded model. First, tries to load the model from the local (note: local to Rasa server) storage system. Secondly, tries to load the model from the provided model server configuration. Last, tries to load the model from the provided remote storage.

Authorizations:

TokenAuth__JWT

Request Body schema: application/json required
model_file string
Path to model file
model_server object (EndpointConfig)
remote_storage string
Enum:"aws""gcs""azure"
Name of remote storage system

Responses

204

Model was successfully replaced.

400

Bad Request

401

User is not authenticated.

403

User has insufficient permission.

500

An unexpected error occurred.

put/model

Local development server

http://localhost:5005/model

Request samples

Content type

application/json

Copy Expand all Collapse all

`{"model_file": "/absolute-path-to-models-directory/models/20190512.tar.gz",

"model_server": {"url": "string",

"params": { },

"headers": { },

"basic_auth": { },

"token": "string",

"token_name": "string",

"wait_time_between_pulls": 0

},

"remote_storage": "aws"

}`

Response samples

Content type

application/json

Copy

`{"version": "1.0.0",

"status": "failure",

"reason": "BadRequest",

"code": 400

}`

tag/Model/operation/unloadModel Unload the trained model

Unloads the currently loaded trained model from the server.

Authorizations:

TokenAuth__JWT

Responses

204

Model was sucessfully unloaded.

401

User is not authenticated.

403

User has insufficient permission.

delete/model

Local development server

http://localhost:5005/model

Response samples

Content type

application/json

Copy

`{"version": "1.0.0",

"status": "failure",

"reason": "NotAuthenticated",

"message": "User is not authenticated to access resource.",

"code": 401

}`

tag/Flows Flows

tag/Flows/operation/getFlows Retrieve the flows of the assistant

Returns the assistant was trained on.

Authorizations:

TokenAuth__JWT

Responses

200

Flows were successfully retrieved.

401

User is not authenticated.

403

User has insufficient permission.

406

Invalid header provided.

500

An unexpected error occurred.

get/flows

Local development server

http://localhost:5005/flows

Response samples

Content type

application/json

Copy Expand all Collapse all

[{"id": "check_balance",\ \ "name": "check balance",\ \ "description": "check the user's account balance",\ \ "steps": [{ }\ \ ]\ \ }\ \ ]

tag/Domain Domain

tag/Domain/operation/getDomain Retrieve the loaded domain

Returns the domain specification the currently loaded model is using.

Authorizations:

TokenAuth__JWT

Responses

200

Domain was successfully retrieved.

401

User is not authenticated.

403

User has insufficient permission.

406

Invalid header provided.

500

An unexpected error occurred.

get/domain

Local development server

http://localhost:5005/domain

Response samples

Content type

application/jsonapplication/yamlapplication/json

Copy Expand all Collapse all

`{"config": {"store_entities_as_slots": false

},

"intents": [{"property1": {"use_entities": true

},

"property2": {"use_entities": true

}

}

],

"entities": ["person",

"location"

],

"slots": {"property1": {"auto_fill": true,

"initial_value": "string",

"type": "string",

"values": ["string"

]

},

"property2": {"auto_fill": true,

"initial_value": "string",

"type": "string",

"values": ["string"

]

}

},

"responses": {"property1": {"text": "string"

},

"property2": {"text": "string"

}

},

"actions": ["action_greet",

"action_goodbye",

"action_listen"

]

}`

tag/Channel-Webhooks Channel Webhooks

tag/Channel-Webhooks/operation/postMessageRestChannel Post user message from a REST channel

Post a message from the user and forward it to the assistant. Return the message of the assistant to the user.

Authorizations:

TokenAuth__JWT

path Parameters
rest_channel
required
string
Enum:"rest""callback"
The REST channel used for custom integrations. They provide a URL where you can post messages and either receive response messages directly, or asynchronously via a webhook.
Request Body schema: application/json required

The user message payload

sender string
The sender ID
message string
The message text

Responses

200

The message was processed successfully

401

User is not authenticated.

403

User has insufficient permission.

406

Invalid header provided.

500

An unexpected error occurred.

post/webhooks/{rest_channel}/webhook

Local development server

http://localhost:5005/webhooks/{rest\_channel}/webhook

Request samples

Content type

application/json

Copy

`{"sender": "default",

"message": "Hello!"

}`

Response samples

Content type

application/json

Copy Expand all Collapse all

[{"recipient_id": "default",\ \ "text": "Hello!"\ \ }\ \ ]

tag/Channel-Webhooks/operation/postMessageCustomChannel Post user message from a custom channel

Post a message from the user and forward it to the assistant. Return the message of the assistant to the user. This is from a custom channel.

Authorizations:

TokenAuth__JWT

path Parameters
custom_channel
required
string
Example: my_custom_channel
The custom channel connector used for integration. They provide a URL where you can post and receive messages.
Request Body schema: application/json required

The user message payload

sender string
The sender ID
message string
The message text
stream boolean
Whether to use streaming response
input_channel string
Input channel name
metadata object
Additional metadata

Responses

200

The message was processed successfully

401

User is not authenticated.

403

User has insufficient permission.

406

Invalid header provided.

500

An unexpected error occurred.

post/webhooks/{custom_channel}/webhook

Local development server

http://localhost:5005/webhooks/{custom\_channel}/webhook

Request samples

Content type

application/json

Copy Expand all Collapse all

`{"sender": "string",

"message": "string",

"stream": true,

"input_channel": "string",

"metadata": { }

}`

Response samples

Content type

application/json

Copy Expand all Collapse all

`{"messages": [{"recipient_id": "string",

"text": "string",

"image": "string",

"buttons": [{"title": "string",

"payload": "string"

}

],

"attachement": [{"title": "string",

"payload": "string"

}

]

}

],

"metadata": { },

"conversation_id": "string",

"tracker_state": {"sender_id": "default",

"user_id": "usr_a1b2c3d4e5f6",

"current_session_id": "4b3c1e2a-91f0-4d8e-b123-abc123def456",

"slots": [{"slot_name": "slot_value"

}

],

"latest_message": {"entities": [{"start": 0,

"end": 0,

"value": "string",

"entity": "string",

"confidence": 0

}

],

"intent": {"confidence": 0.6323,

"name": "greet"

},

"intent_ranking": [{"confidence": 0.6323,

"name": "greet"

}

],

"text": "Hello!",

"message_id": "b2831e73-1407-4ba0-a861-0f30a42a2a5a",

"metadata": { },

"commands": [{"command": "start flow",

"flow": "transfer_money"

}

],

"flows_from_semantic_search": [["transfer_money",

0.9035494923591614

]

],

"flows_in_prompt": ["transfer_money"

]

},

"latest_event_time": 1537645578.314389,

"followup_action": "string",

"paused": false,

"stack": [{"frame_id": "8UJPHH5C",

"flow_id": "transfer_money",

"step_id": "START",

"frame_type": "regular",

"type": "flow"

}

],

"latest_input_channel": "rest",

"latest_action_name": "action_listen",

"latest_action": {"action_name": "string",

"action_text": "string"

},

"active_loop": {"name": "restaurant_form"

}

}

}`

Ask AI

🍪 Cookie settings

We use cookies to keep things running smoothly and improve your experience.

Customize settings

Accept allReject all