Zum Hauptinhalt springen
GET
/
crm
/
v3
/
owners
/
Rufen Sie eine seitennummerierte Liste aller für den Account zuständigen Mitarbeiter ab.
curl --request GET \
  --url https://api.hubapi.com/crm/v3/owners/ \
  --header 'private-app-legacy: <api-key>'
{
  "paging": {
    "next": {
      "link": "<string>",
      "after": "<string>"
    }
  },
  "results": [
    {
      "id": "6166860",
      "email": "jsmith@example.com",
      "firstName": "John",
      "lastName": "Smith",
      "userId": 1296619,
      "createdAt": "2019-10-30T03:30:17.883Z",
      "updatedAt": "2019-12-07T16:50:06.678Z",
      "archived": false,
      "teams": [
        {
          "id": "178588",
          "name": "West Coast Sales",
          "primary": true
        },
        {
          "id": "178590",
          "name": "California Sales",
          "primary": false
        }
      ]
    }
  ]
}

Unterstützte Produkte

Erfordert eines der folgenden Produkte oder höher.
Marketing HubMarketing Hub -Kostenlos
Sales HubSales Hub -Kostenlos
Service HubService Hub -Kostenlos
Content HubContent Hub -Starter
Diese API erfordert einen der folgenden Bereiche:
crm.objects.owners.read

Authorizations

private-app-legacy
string
header
required

Query Parameters

email
string
after
string
limit
integer
default:100
archived
boolean
default:false

Response

successful operation

results
object[]
required
paging
object