Run now an automation
curl --request POST \
--url https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/run-now/ \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/run-now/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/run-now/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)Automations
Run now an automation
Run now a automation
POST
/
v1
/
automations
/
{automation_id}
/
run-now
/
Run now an automation
curl --request POST \
--url https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/run-now/ \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/run-now/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/run-now/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)
