Skip to main content
GET
/
automations
/
{id}
/
replies
Get automation replies
curl --request GET \
  --url https://app.drippi.ai/api/v1/automations/{id}/replies \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "replies": [
    {
      "id": "<string>",
      "messageId": "<string>",
      "associatedUserAccount": "<string>",
      "message": "<string>",
      "classification": "<string>",
      "createdAt": {
        "_seconds": 123,
        "_nanoseconds": 123
      }
    }
  ]
}
Returns all replies for a specific automation within a specified time period. This endpoint provides access to reply data including message content, sentiment analysis, and timestamps. Use the from and to query parameters to filter by date range.

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

id
string
required

Automation ID

Query Parameters

from
string<date-time>

Start date (ISO 8601 format)

to
string<date-time>

End date (ISO 8601 format)

Response

Successfully retrieved replies

status
string
Example:

"success"

replies
object[]