List registered triggers
curl --request GET \
--url https://api.arg.ai/api/automation/triggers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.arg.ai/api/automation/triggers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.arg.ai/api/automation/triggers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}Automations
List registered triggers
GET
/
api
/
automation
/
triggers
List registered triggers
curl --request GET \
--url https://api.arg.ai/api/automation/triggers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.arg.ai/api/automation/triggers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.arg.ai/api/automation/triggers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}Authorizations
bearerAuthapiKeyAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Workspace to list.
Filter by trigger kind.
Filter by whether the trigger is enabled.
Response
Successful response
The response is of type object.