Owner id missing in response

Trying to use the hubspot apis to get the deal objects but the owner id property is not there in the response as per the example shows

this is the sample request

POST

https://api.hubapi.com/crm/v3/objects/deals/deal_id

Response

{

“id”: “XXXXXXXXXX”,

“properties”: {

“amount”: “100000”,

“closedate”: “2021-04-15T04:41:52.633Z”,

“createdate”: “2021-04-09T12:50:50.417Z”,

“dealname”: “Test DEAL - New Deal”,

“dealstage”: “closedwon”,

“hs_lastmodifieddate”: “2021-04-15T04:41:52.710Z”,

“hs_object_id”: “XXXXXXXXXX”,

“pipeline”: “default”

},

“createdAt”: “2021-04-09T12:50:50.417Z”,

“updatedAt”: “2021-04-15T04:41:52.710Z”,

“archived”: false

}

Hi @ASharma8

These are the default returned propeties for this object. Any additional properties must be declared in the query param. Would look something like this:

https://api.hubapi.com/crm/v3/objects/deals/dealId?properties=whatever_property_i_need

Thanks @dennisedson