Retrieve an automation
curl --request GET \
--url https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/ \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', 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.get(url, headers=headers)
print(response.text)Automations
Retrieve an automation
Get a automation by ID
GET
/
v1
/
automations
/
{automation_id}
/
Retrieve an automation
curl --request GET \
--url https://chatatp-agent-builder-backend.onrender.com/v1/automations/{automation_id}/ \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', 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.get(url, headers=headers)
print(response.text)
