Pause an automation
curl --request POST \
--url https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/pause/ \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/pause/', 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}/pause/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)Automations
Pause an automation
Pause a automation
POST
/
v1
/
automations
/
{automation_id}
/
pause
/
Pause an automation
curl --request POST \
--url https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/pause/ \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/pause/', 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}/pause/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)
