Skip to main content
GET
/
api
/
public
/
v1
/
filters
/
call-owners
Search call owners
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.

Pass 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.

Authorizations

Authorization
string
header
default:sk_your_api_key
required

API key with sk_ prefix. Create one in Org Settings → API Keys.

Query Parameters

q
string

Optional prefix search string

Response

Team-scoped call owner options

data
object
required