Skip to main content
GET
/
owners
curl "https://api.clustr-ai.com/api/public/owners" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "owners": [
      {
        "id": "1f2e3d4c-5b6a-7980-1234-567890abcdef",
        "email": "rep@acme.com",
        "firstName": "Sam",
        "lastName": "Rivera",
        "fullName": "Sam Rivera"
      }
    ]
  }
}
List your Clustr team members — the users an opportunity can be assigned to. Use an owner’s id (or email) with the Update Opportunity endpoint.

Response Fields

owners
array
Array of owner objects, ordered by name.
owners[].id
string
User UUID — pass this as assigned_to_user_id when updating an opportunity.
owners[].email
string
User email — can be passed as owner_email when updating an opportunity.
owners[].fullName
string
Display name.
curl "https://api.clustr-ai.com/api/public/owners" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "owners": [
      {
        "id": "1f2e3d4c-5b6a-7980-1234-567890abcdef",
        "email": "rep@acme.com",
        "firstName": "Sam",
        "lastName": "Rivera",
        "fullName": "Sam Rivera"
      }
    ]
  }
}