HubSpot API scope to retrieve properties from tickets

Context: There are 4 native objects in HubSpot:

  • contacts
  • companies
  • deals
  • tickets

I am retrieving information via the CRM API and using the following scopes:

  • crm.objects.contacts.read
  • crm.schemas.contacts.read
  • crm.objects.companies.read
  • crm.schemas.companies.read
  • crm.objects.deals.read
  • crm.schemas.deals.read

I do not see the scopes for tickets.

Question:

What are the scopes to retrieve data for the native tickets object, just like for contacts, companies and deals?

Tickets just have two scopes -

tickets

and

tickets.sensitive

.

tickets will give you the same access as

crm.objects.[object].read

and

crm.objects.[object].write

.

Thanks!