AI Agent Conversations

Get List of Conversations of AI Agent via API

You can interact with this API by sending a GET request. This allows you to get conversations of specific AI Agent in your Agency Account.

API Endpoint

The following endpoint/URL should be used in order to access this API:

https://app.stammer.ai/en/chatbot/api/v1/conversations/

Request Headers

The API must have the following request headers:

Content-Type: application/json
Authorization: Token <Your-API-Token>

Request Body

  • chatbot_id (Type: Integer, Optional)

    • The ID of the chatbot.

    • If provided, 'chatbot_uuid' should not be used.

  • chatbot_uuid (Type: UUID, Optional)

    • The UUID of the chatbot.

    • If provided, 'chatbot_id' should not be used.

  • startDate (Type: Date, Optional)

    • The start date for filtering conversations.

    • If both 'startDate' and 'endDate' are provided, 'startDate' should not be later than 'endDate'.

  • endDate (Type: Date, Optional)

    • The end date for filtering conversations.

    • If both 'startDate' and 'endDate' are provided, 'startDate' should not be later than 'endDate'.

  • sourcePlatform (Type: Choice, Optional)

    • The source platform from which the conversation originated.

  • onlyDeletedConversations (Type: Boolean, Required)

    • Flag to filter only deleted conversations.

  • conversation_number (Type: Integer, Optional)

    • The conversation number for filtering conversations.

Request Example

Here's an example of the request:

Learn More - https://app.stammer.ai/en/api-docs/conversations

Last updated