Reference

Glossary

The words the app uses, and exactly what each one means.

When the app or these docs use these words, they mean this.

The shape of the system

TermMeaning
CenterThis application — the hub between the networks your devices live on and the systems that consume their data.
Left sideWhere devices live and messages come from: a Sigfox backend, a ChirpStack or TTN server.
Right sideA system that consumes the data — a billing platform, an HTTP endpoint.
SourceAn integration whose direction is Source (left).
SinkAn integration whose direction is Sink (right).
ProviderThe concrete system type behind an integration: SIGFOX, CHIRPSTACK, TTN, UNA_SU, HTTP, GENERIC.
AdapterThe part of the Center that speaks one provider's dialect — authenticating its callbacks, or delivering in its format. Why adding a network is configuration rather than development.
IntegrationA configured connection to another system: provider, direction, credentials and settings.

Containers

TermMeaning
TenantAn organisation. Tenants nest — operator, reseller, end customer — and each sees itself and everything beneath it.
Active tenantThe tenant you are currently working in, chosen in the sidebar. Decides what you see and where new records land.
ProjectA deployment inside a tenant. Devices, integrations, routes and rules each belong to exactly one.

Devices

TermMeaning
DeviceOne physical thing, created once, regardless of how many networks it speaks on.
Technology bindingOne network's identity for a device — a Sigfox device ID and PAC, a LoRaWAN DevEUI and keys. A device may have several.
Device profileA device model: vendor, model, the fields its units need, and the decoder for each radio it speaks. Shared by every device of that model.
Field schemaWhich keys a device on a profile must or may fill, and whether each is a plain attribute or an encrypted secret.
DecoderTurns payload bytes into named readings. Grammar (declarative), JavaScript (sandboxed), or none.
Telemetry / metaThe two groups a decoder returns — what the device measured, and facts about the transmission. Kept separate all the way to your sink.

Data in flight

TermMeaning
MessageOne normalised inbound payload. Transient — held until delivered, then discarded.
DeliveryOne attempt to hand one message to one sink. A message going to three sinks is three deliveries.
Idempotency keyA stable key per inbound message, used by your side to recognise a repeat. The Center delivers at least once.
Dead letterA delivery that exhausted its eight attempts. Parked for inspection and replay, not lost.
ReplayRe-queueing a dead-lettered delivery. Rebuilt with the current configuration, which is what makes "fix it, then replay" work.

Routing

TermMeaning
RouteA wire between one source and one sink. With none configured, a project broadcasts to every active sink.
RuleA condition and an action, evaluated top-down before delivery — deliver, drop, respond with a downlink, or wait and correlate.
Output structureThe shape delivered to a sink, set per source → sink pair. Full message, raw provider frame, decoded telemetry only, everything decoded, or custom.
DownlinkA response travelling back to the device, in the reply to the callback that carried its uplink.

Endpoints

TermMeaning
Ingest endpointThe URL a network POSTs messages to. No Center token — the source's adapter authenticates the payload.
Ingest keyThe opaque token addressing an endpoint: pk_ for a project, sk_ for a source, dk_ for a device. Unguessable, and rotatable — but a scoping id, not authentication.
Ingest slugAn optional readable alias — …/i/<slug> for a project, …/i/s/<slug> for a source. Guessable by design; the adapter still authenticates.

Provisioning

TermMeaning
ProvisioningCreating or updating a device, device type or callback on the provider, to match the Center's record.
Plan / ApplyA dry run showing exactly what would be sent, and the real thing. Apply is gated and idempotent — re-running reconciles rather than duplicating.
ContractOn Sigfox, what a device type is allowed to do — including whether it can carry downlinks. Fixed when the device type is created.
Copyright © 2026