import requests
url = "https://app.oneperfectslice.ai/api/public/v1/filters/crm-companies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"crmCompanies": [
{
"id": 201,
"externalId": "hs_67890",
"name": "Acme Corp",
"callCount": 0
}
]
}
}Search CRM companies by name across your organization. Returns matching companies with call counts. CRM data is shared across all teams in your org.
import requests
url = "https://app.oneperfectslice.ai/api/public/v1/filters/crm-companies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"crmCompanies": [
{
"id": 201,
"externalId": "hs_67890",
"name": "Acme Corp",
"callCount": 0
}
]
}
}Documentation Index
Fetch the complete documentation index at: https://docs.oneperfectslice.ai/llms.txt
Use this file to discover all available pages before exploring further.