Skip to main content
GET
/
automations
/
{id}
/
actionLog
Get automation action log
curl --request GET \
  --url https://app.drippi.ai/api/v1/automations/{id}/actionLog \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "actionLog": [
    {
      "id": "<string>",
      "automationId": "<string>",
      "action": "<string>",
      "message": "<string>",
      "leadData": {
        "id": "<string>",
        "name": "<string>",
        "username": "<string>",
        "twid": "<string>",
        "profileImageUrl": "<string>",
        "bio": "<string>",
        "location": "<string>",
        "website": "<string>",
        "followersCount": 123,
        "followingCount": 123,
        "tweetCount": 123,
        "listedCount": 123,
        "verified": true,
        "protected": true,
        "sourceId": "<string>",
        "status": "<string>",
        "createdAt": {
          "_seconds": 123,
          "_nanoseconds": 123
        },
        "updatedAt": {
          "_seconds": 123,
          "_nanoseconds": 123
        }
      },
      "error": {
        "message": "<string>",
        "code": "<string>"
      },
      "logsAndUsage": {
        "creditsUsed": 123,
        "tokensUsed": 123
      },
      "updatedAt": {
        "_seconds": 123,
        "_nanoseconds": 123
      },
      "details": {}
    }
  ]
}
Returns the action log for a specific automation within a specified time period. This endpoint provides detailed information about all actions performed by the automation, including timestamps and action details. 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 action log

status
string
Example:

"success"

actionLog
object[]