Tasks API - list of properties

I need to download Hubspot tasks via API and I am looking at this documentation page: Accounts Dashboard | HubSpot

On the “List” section I read that I can send a GET request to /crm/v3/objects/tasks, and in the request I could pass “A comma separated list of the properties to be returned in the response”.

Does anyone know where should I retrieve the allowed property names to pass?

When I implemented a similar download flow for tickets, I went to the ticket property configuration page, and next to each property (either built-in or custom) you have access to the internal Hubspot name to be used via API.

I cannot find anything similar for tasks - and if I send the request to download the tasks without passing any property, I only get

hs_createdate

hs_lastmodifieddate

hs_object_id

archived

While for each task I’d like to have of course also the “Due Date”, the title/subject of the task, the “Task Type” (email, call, todo), the assigned owner, the status, priority, etc.

In one word, I’d like to find out whatever info is stored on Hubspot about a task.

Can anyone share some suggestions?

Thanks

Matteo

@matteoumbri

You can query the Properties API to get a comprehensive list of available properties. If you are going to request many, I would suggest employing the CRM Search API instead.

Thanks @dennisedson,

using the Properties API I sent request to

https://api.hubapi.com/crm/v3/properties/task/

and was able to find all the available task properties