Comments Automation
List comment automation executions
Retrieve the execution history of a comment automation.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET "{{baseUrl}}/api/v1/comment-automations/12/executions" \
-H "Authorization: Bearer {token}"
{
"data": [
{
"id": 501,
"status": "success",
"comment": "Great post, Sarah! Thanks for sharing.",
"executed_at": "2026-09-24T09:15:00Z"
}
]
}
Retrieve the execution history of a comment automation.
curl -X GET "{{baseUrl}}/api/v1/comment-automations/12/executions" \
-H "Authorization: Bearer {token}"
{
"data": [
{
"id": 501,
"status": "success",
"comment": "Great post, Sarah! Thanks for sharing.",
"executed_at": "2026-09-24T09:15:00Z"
}
]
}
Bearer {token}.curl -X GET "{{baseUrl}}/api/v1/comment-automations/12/executions" \
-H "Authorization: Bearer {token}"
{
"data": [
{
"id": 501,
"status": "success",
"comment": "Great post, Sarah! Thanks for sharing.",
"executed_at": "2026-09-24T09:15:00Z"
}
]
}
