Skip to main content

Terminal All Ep

POST 

/v1/terminal/all

Terminal All EP

Retrieves all terminal details from the system. This endpoint returns only locations with terminal types (Terminal, Biodiesel Terminal, Ethanol Terminal).

Required Scopes (it.r)

Response

id: str
The internal identifier for the terminal.


name: str
The unique name of the terminal.


short_name: str | None = None
The abbreviated name of the terminal.


market: str | None = None
The name of the market associated with the terminal.


market_id: int | None = None
The internal market identifier.


type: str | None = None
The type of terminal: Biodiesel Terminal, Ethanol Terminal, or Terminal.


lat: float | None = None
The latitude of the terminal.


lon: float | None = None
The longitude of the terminal.


address: str | None = None
The street address of the terminal, e.g., 111 Example St.


phone: str | None = None
The phone number for the terminal.


city: str | None = None
Terminal city, e.g., "New York".


state: str | None = None
The two-letter abbreviation for the state the terminal is in.


postal_code: str | None = None
The postal code the terminal is in.


source_id: int | None = None
If terminal received from integration, the identifier used within the source system.


source_system: str | None = None
If terminal received from integration, the name of the source system.


source_system_id: int | None = None
If received from integration, the system id within the source system.


timezone: str | None = None
The timezone of the terminal.


supply_zones: list[str] | None = []
If part of a supply zone, the supply zone name.


updated_on: datetime | None = None
The timestamp of the most recent update to the terminal data.


extra_data: dict | None = {}
Any additional data provided or managed by the client through integration endpoints.

Responses

Successful Response

[
{
"id": "string",
"name": "string",
"short_name": "string",
"market": "string",
"market_id": "string",
"freight_region_name": "string",
"freight_region_id": "string",
"type": "string",
"lat": 0,
"lon": 0,
"address": "string",
"phone": "string",
"city": "string",
"state": "string",
"active": true,
"postal_code": "string",
"source_id": "string",
"source_system": "string",
"source_system_id": "string",
"timezone": "string",
"supply_zones": [
"string"
],
"updated_on": "2025-12-17T21:49:50.578Z",
"cards": [
{
"timezone_data": {},
"id": "string",
"name": "string",
"activity": "Loading",
"activity_threshold": 0,
"certification_trigger": "Automatic - Activity Based",
"days_valid": 0,
"warning_threshold": 0,
"dispatch_impact": "Alert",
"carding_instructions": "string"
}
],
"dwells": [
{
"product_group": "string",
"set_dwell": 30,
"dwell_override": 0,
"override_expiry": "2025-12-17T21:49:50.578Z",
"payroll_override": 0
}
],
"requires_card": true,
"geofence": [
{
"latitude": 0,
"longitude": 0
}
],
"supply_map": [
{
"source_system": "string",
"source_id": "string"
}
],
"tcn": "string",
"extra_data": {}
}
]
Loading...