The Things Stack Webhook Create Example

LoRaWANIoTInternet Of ThingsOpen SourceNetwork ServerLPWANTelemetrySensorsGatewaysConnectivityApache 2.0

The Things Stack Webhook Create Example is an example object payload from The Things Network / The Things Stack, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

webhookfield_mask

Example Payload

Raw ↑
{
  "webhook": {
    "ids": {
      "application_ids": { "application_id": "weather-stations" },
      "webhook_id": "downstream-cloud"
    },
    "base_url": "https://example.com/ttn",
    "format": "json",
    "headers": { "X-Tenant": "weather-co" },
    "uplink_message": { "path": "/uplink" },
    "uplink_normalized": { "path": "/uplink-normalized" },
    "join_accept": { "path": "/join" },
    "downlink_ack": { "path": "/ack" },
    "downlink_nack": { "path": "/nack" },
    "downlink_failed": { "path": "/failed" },
    "downlink_queued": { "path": "/queued" },
    "location_solved": { "path": "/location" },
    "service_data": { "path": "/service" }
  },
  "field_mask": {
    "paths": ["base_url", "format", "uplink_message", "join_accept"]
  }
}