import requests
url = "https://app.oneperfectslice.ai/api/public/v1/filters/call-owners"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"callOwners": [
{
"id": "jane@acme.com",
"displayName": "Jane Smith",
"email": "jane@acme.com",
"callCount": 15
}
]
}
}Search for call owners on your team by name. Returns matching owners with their email and call count. Use the results to populate callOwnerEmails filters.
Related: Search posts · Run a slice
import requests
url = "https://app.oneperfectslice.ai/api/public/v1/filters/call-owners"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"callOwners": [
{
"id": "jane@acme.com",
"displayName": "Jane Smith",
"email": "jane@acme.com",
"callCount": 15
}
]
}
}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.
q for typeahead search, or omit it to get all call owners. Use the returned email values in callOwnerEmails filters on slice runs and post searches.