Skip to main content
This guide explains two important fields found on all Terminal entities: status and metadata.visibility. Understanding the difference is essential for correctly interpreting data and configuring filtering.

What is an Entity?

In Terminal, an entity is a core data model that represents a real-world object tracked by telematics providers. The three main entities are: All entities share the same status and metadata.visibility fields described below.

Entity Status

The status field reflects whether an entity is currently active in the fleet’s telematics provider account.

How Status is Determined

The status value comes directly from provider data during sync. Terminal normalizes each provider’s representation into the standard active/inactive enum. Vehicle status examples: Driver status examples:
Terminal does not modify or compute this value beyond normalizing the provider’s representation. The status reflects the entity’s state in the provider system at the time of the last sync.

Entity Visibility

The metadata.visibility field is a Terminal-specific concept that indicates whether an entity’s data is being ingested and returned by the API. This is computed at query time based on your connection’s filtering configuration.
When includeIds is present and non-empty, it takes highest priority. All other filter criteria (status and excludeIds) are ignored.

Filtering by Entity Type

Filters are configured separately for vehicles and drivers on each connection:
See the Filtering Guide for complete configuration details.

Common Scenarios

Scenario 1: Offboarded Entity

A driver is deactivated in the provider’s system:
The driver is still visible (returned by the API) but marked as inactive.

Scenario 2: Filtered by Status

A connection is configured to only sync active vehicles, but an inactive vehicle exists:
By default, hidden entities are not returned by the API. Use the hidden=true query parameter to include them.

Scenario 3: Hard-Deleted Entity

A vehicle was previously synced but has been permanently removed from the provider:
Terminal retains the record for historical reference. The status reflects the last known state before deletion.
By default, deleted entities are not returned by the API. Use the deleted=true query parameter to include them.