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