curl --request GET \
--url https://api.hubapi.com/crm/v3/owners/{ownerId} \
--header 'Authorization: Bearer <token>'{
"archived": false,
"createdAt": "2019-10-30T03:30:17.883Z",
"email": "jsmith@example.com",
"firstName": "John",
"id": "6166860",
"lastName": "Smith",
"teams": [
{
"id": "178588",
"name": "West Coast Sales",
"primary": true
},
{
"id": "178590",
"name": "California Sales",
"primary": false
}
],
"updatedAt": "2019-12-07T16:50:06.678Z",
"userId": 1296619
}Retrieve details of a specific owner using either their ‘id’ or ‘userId’.
curl --request GET \
--url https://api.hubapi.com/crm/v3/owners/{ownerId} \
--header 'Authorization: Bearer <token>'{
"archived": false,
"createdAt": "2019-10-30T03:30:17.883Z",
"email": "jsmith@example.com",
"firstName": "John",
"id": "6166860",
"lastName": "Smith",
"teams": [
{
"id": "178588",
"name": "West Coast Sales",
"primary": true
},
{
"id": "178590",
"name": "California Sales",
"primary": false
}
],
"updatedAt": "2019-12-07T16:50:06.678Z",
"userId": 1296619
}Supported products
Required Scopes
The access token received from the authorization server in the OAuth 2.0 flow.
Whether to return only results that have been archived.
id, userId successful operation
Indicates whether the owner is archived.
The date and time when the owner was created.
The unique identifier of the owner.
The type of the owner, which can be either PERSON or QUEUE.
PERSON, QUEUE The date and time when the owner was last updated.
The email address of the owner.
The first name of the owner.
The last name of the owner.
Show child attributes
The user ID of the owner.
The user ID of the owner, including inactive users.
Was this page helpful?