Docs

Migrating from Legacy

Map legacy agrirouter terms and concepts to their equivalents in the current API

If you are coming from an earlier integration or older documentation, you will run into vocabulary that no longer appears in the current API. This page lists the legacy terms most likely to cause confusion and points each one at its current counterpart.

This page currently covers terminology only. Deeper guidance on migrating existing integrations to the current API will be added later.

If you are migrating an existing integration from the legacy API to the current API, please write to support@agrirouter.com directly. Some manual changes on our side in the backend are required for the migration to work, so it cannot be completed by the partner alone.

Renamed concepts

The concept still exists under a different name.

Legacy termNow calledNotes
OnboardingEndpoint CreationThe flow that registers a new endpoint for an application. See Endpoints.
ReconfigurationEndpoint UpdateUpdating an existing endpoint, for example changing its capabilities or subscriptions.
Routing rule(s)Route(s)See Routing on the Messaging concept page.
Data typesMessage typesThe technical message-type identifiers (for example, iso:11783:-10:taskdata:zip) that classify payloads and drive capability declarations.
Farming Softwarecloud_softwarefarming_software is still accepted for backward compatibility, but new integrations should register as cloud_software.
Telemetry Platformvirtual_communication_unit per machineThe telemetry-platform framing, in which a cloud platform acted as a concentrator for a fleet of machines, is gone. Each machine is now registered directly as its own virtual_communication_unit endpoint under the tenant.

CU and VCU: not the same thing

The abbreviations look similar and both relate to machines, but they refer to different integrations.

TermSurfaceWhat it isWho creates it
CU (Communication Unit, communication_unit)Legacy API onlyA physical hardware device on a machine (terminal, telemetry box, ISOBUS gateway) that connects to agrirouter directly.Hardware manufacturers, via the legacy onboarding flow. See the Communication Unit guide.
VCU (Virtual Communication Unit, virtual_communication_unit)Current APIA regular endpoint that represents a single physical machine in an end user's account. Not hardware: a cloud application that manages the machine creates and operates the VCU on the user's behalf.Cloud applications, via PUT /endpoints/{externalId} with endpoint_type: "virtual_communication_unit". See the Virtual Communication Units guide.

CUs are not an endpoint type in the current API and cannot be created through it. They remain active in the agrirouter ecosystem on the legacy surface, so a current-API integration may still receive messages from a communication_unit sender in its feed.

Removed, replaced by a current primitive

The old idea is no longer exposed as such, but the same integration need is covered by a different mechanism in the current API.

Legacy termNow handled by
Inbox / OutboxEndpoints exchange messages through POST /messages for sending and the event stream on GET /events for receiving.
Push notificationsServer-Sent Events on GET /events.
Chunked messages (1 MB client-side chunking)Transparent server-side chunking. The payload limit is 256 MB and chunking is handled by agrirouter, so applications no longer split or assemble messages themselves.

Removed, no equivalent

These concepts were specific to the legacy integration model and have no place in the current API.

Legacy termNotes
MiddlewareNot part of the current integration model.
Onion PrincipleThe current API is built on standard HTTP primitives and no longer uses the layered "onion" framing.
ARTSThe ARTS integration is not supported.
Certificates (TLS client certificates, mTLS)Authentication is based on OAuth 2.0 client credentials. See Authorization and Security.
Router DevicesLegacy-only concept; the current API does not use Router Devices.
Base64 line-break rules, 1-based numbering conventionsThese legacy encoding conventions do not apply.

Next steps

On this page