Skip to main content

What Are Autotask Entities?

Autotask stores data as entities, each with a unique ID and properties (data fields). For example, an Account entity has an ID and properties like AccountName, AccountType, and Phone.

Common Entity Types

EntityDescriptionCommon Use Cases
AccountCompanies/customers in AutotaskLook up client info, create tickets for a company
TicketService ticketsQuery open tickets, update ticket status
ContactPeople associated with accountsFind contact email, create tickets for a contact
ResourceAutotask users (technicians)Assign tickets, check resource availability
TicketNoteNotes on ticketsAdd updates, retrieve ticket history
TimeEntryTime logged on ticketsQuery billable time, create time entries
ContractService contractsCheck contract status, find covered items
InstalledProductConfiguration items/assetsLink tickets to assets, query device info
ProjectProjectsQuery project tasks, update project status
TaskProject tasksCreate tasks, update task status

Entity Properties

Each entity type has its own set of properties. Some properties contain simple values (strings, numbers, dates), while others contain IDs that reference related entities.

For example, a Ticket entity includes:

  • id: The ticket's unique identifier
  • title: The ticket subject line
  • description: The ticket description
  • status: ID referencing a status picklist value
  • accountID: ID referencing the associated Account entity
  • contactID: ID referencing the associated Contact entity

When you query entities, MSPintegrations automatically expands linked objects, so you can access related entity properties directly.

Full Entity Reference

Autotask has over 150 entity types. For the complete list with all properties, see the Autotask API documentation.