curl --request GET \
--url https://api.hubapi.com/owners/v2/owners/
"\nExample GET URL:\nhttps://api.hubapi.com/owners/v2/owners\n\nExample response:\n[\n {\n \"portalId\": 62515,\n \"ownerId\": 64,\n \"type\": \"PERSON\",\n \"firstName\": \"Holly\",\n \"lastName\": \"Flax\",\n \"email\": \"holly@dundermifflin.com\",\n \"createdAt\": 1405605858624,\n \"updatedAt\": 1416928146449,\n \"remoteList\": [\n {\n \"portalId\": 62515,\n \"ownerId\": 64,\n \"remoteId\": \"137304\",\n \"remoteType\": \"HUBSPOT\",\n \"active\": true\n }\n ]\n },\n {\n \"portalId\": 62515,\n \"ownerId\": 65,\n \"type\": \"PERSON\",\n \"firstName\": \"Michael\",\n \"lastName\": \"Scott\",\n \"email\": \"michael@dundermifflin.com\",\n \"createdAt\": 1405605858732,\n \"updatedAt\": 1416928145437,\n \"remoteList\": [\n {\n \"portalId\": 62515,\n \"ownerId\": 65,\n \"remoteId\": \"153112\",\n \"remoteType\": \"HUBSPOT\",\n \"active\": true\n }\n ]\n },\n {\n \"portalId\": 62515,\n \"ownerId\": 66,\n \"type\": \"PERSON\",\n \"firstName\": \"Dwight\",\n \"lastName\": \"Schrute\",\n \"email\": \"dwight@dundermifflin.com\",\n \"createdAt\": 1405605858898,\n \"updatedAt\": 1416928146430,\n \"remoteList\": [\n {\n \"portalId\": 62515,\n \"ownerId\": 66,\n \"remoteId\": \"166656\",\n \"remoteType\": \"HUBSPOT\",\n \"active\": true\n }\n ]\n }\n]"
This endpoint returns all owners in a HubSpot account. Owners are automatically created and updated in HubSpot when new users are added or existing owners are synced from Salesforce. Use case for this endpoint: Owners play a key role in the CRM, but can also be used for task assignment inside the marketing calendar or in email personalization tokens.
curl --request GET \
--url https://api.hubapi.com/owners/v2/owners/
"\nExample GET URL:\nhttps://api.hubapi.com/owners/v2/owners\n\nExample response:\n[\n {\n \"portalId\": 62515,\n \"ownerId\": 64,\n \"type\": \"PERSON\",\n \"firstName\": \"Holly\",\n \"lastName\": \"Flax\",\n \"email\": \"holly@dundermifflin.com\",\n \"createdAt\": 1405605858624,\n \"updatedAt\": 1416928146449,\n \"remoteList\": [\n {\n \"portalId\": 62515,\n \"ownerId\": 64,\n \"remoteId\": \"137304\",\n \"remoteType\": \"HUBSPOT\",\n \"active\": true\n }\n ]\n },\n {\n \"portalId\": 62515,\n \"ownerId\": 65,\n \"type\": \"PERSON\",\n \"firstName\": \"Michael\",\n \"lastName\": \"Scott\",\n \"email\": \"michael@dundermifflin.com\",\n \"createdAt\": 1405605858732,\n \"updatedAt\": 1416928145437,\n \"remoteList\": [\n {\n \"portalId\": 62515,\n \"ownerId\": 65,\n \"remoteId\": \"153112\",\n \"remoteType\": \"HUBSPOT\",\n \"active\": true\n }\n ]\n },\n {\n \"portalId\": 62515,\n \"ownerId\": 66,\n \"type\": \"PERSON\",\n \"firstName\": \"Dwight\",\n \"lastName\": \"Schrute\",\n \"email\": \"dwight@dundermifflin.com\",\n \"createdAt\": 1405605858898,\n \"updatedAt\": 1416928146430,\n \"remoteList\": [\n {\n \"portalId\": 62515,\n \"ownerId\": 66,\n \"remoteId\": \"166656\",\n \"remoteType\": \"HUBSPOT\",\n \"active\": true\n }\n ]\n }\n]"
Successful response - This endpoint returns all owners in a HubSpot account
The response is of type object
.
Was this page helpful?