List integrations
curl --request GET \
--url https://prod-platform-core-api.20x.business/api/v1/integrations \
--header 'Authorization: Bearer <token>'import requests
url = "https://prod-platform-core-api.20x.business/api/v1/integrations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://prod-platform-core-api.20x.business/api/v1/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Integrations
List integrations
List the provider integrations connected to your tenant
GET
/
integrations
List integrations
curl --request GET \
--url https://prod-platform-core-api.20x.business/api/v1/integrations \
--header 'Authorization: Bearer <token>'import requests
url = "https://prod-platform-core-api.20x.business/api/v1/integrations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://prod-platform-core-api.20x.business/api/v1/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Returns the integrations connected to your tenant — telephony, messaging,
calendar and data providers. Credentials are never included in the response.
Query parameters
string
Filter by category, e.g.
calendar, messaging, data, or allstring
Search integration name or provider
curl https://prod-platform-core-api.20x.business/api/v1/integrations \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY"
requests.get(
"https://prod-platform-core-api.20x.business/api/v1/integrations",
headers={"Authorization": f"Bearer {API_KEY}"},
)
await fetch("https://prod-platform-core-api.20x.business/api/v1/integrations", {
headers: { Authorization: `Bearer ${API_KEY}` },
});
Response
[
{
"id": "twilio",
"provider": "TWILIO",
"displayName": "Twilio",
"category": "messaging",
"status": "ACTIVE"
}
]
Adding, rotating and revoking credentials is dashboard-only.
POST, PATCH
and DELETE /integrations reject API keys so a leaked key can never read or
replace your provider secrets.
