curl -X GET "{{baseUrl}}/api/v1/comment-automations/12" \
-H "Authorization: Bearer {token}"
{
"data": {
"id": 12,
"name": "Post Engagement",
"platform": "facebook",
"status": 1,
"limit": 30,
"executor_ids": [101],
"comments": [
{ "text": "Great post, {{first_name}}! Thanks for sharing." }
],
"schedule": [
{ "day": "Monday", "start_time": "09:00", "end_time": "17:00" }
]
}
}
{
"message": "Comment automation not found."
}
Comments Automation
Get a comment automation
Retrieve a single comment automation by ID.
GET
/
api
/
v1
/
comment-automations
/
{id}
curl -X GET "{{baseUrl}}/api/v1/comment-automations/12" \
-H "Authorization: Bearer {token}"
{
"data": {
"id": 12,
"name": "Post Engagement",
"platform": "facebook",
"status": 1,
"limit": 30,
"executor_ids": [101],
"comments": [
{ "text": "Great post, {{first_name}}! Thanks for sharing." }
],
"schedule": [
{ "day": "Monday", "start_time": "09:00", "end_time": "17:00" }
]
}
}
{
"message": "Comment automation not found."
}
Returns the full details of one comment automation.
Headers
string
required
Bearer token. Format:
Bearer {token}.Path parameters
integer
required
ID of the comment automation.
Response
object
The comment automation.
Show properties
Show properties
integer
Unique comment automation ID.
string
Name of the comment automation.
string
Social platform. Currently
facebook.integer
0 = paused, 1 = running.integer
Maximum comments posted per day.
integer[]
Connected accounts that post comments.
object[]
Comment content, each with a
text field.object[]
Posting windows with
day, start_time, and end_time.curl -X GET "{{baseUrl}}/api/v1/comment-automations/12" \
-H "Authorization: Bearer {token}"
{
"data": {
"id": 12,
"name": "Post Engagement",
"platform": "facebook",
"status": 1,
"limit": 30,
"executor_ids": [101],
"comments": [
{ "text": "Great post, {{first_name}}! Thanks for sharing." }
],
"schedule": [
{ "day": "Monday", "start_time": "09:00", "end_time": "17:00" }
]
}
}
{
"message": "Comment automation not found."
}
⌘I
