Qubitro Documentation
SupportLog inSign Up
  • Documentation
  • Guides
  • Developers
  • Welcome
  • Data Sources
    • No-Code Integrations
      • Onomondo
      • Notehub
      • The Things Stack
      • Soracom
      • Loriot
      • 1NCE
      • Golioth
      • AWS IoT Core LoRaWAN
      • Actility ThingPark
      • Chirpstack
      • Particle
    • MQTT
    • HTTP
  • Platform
    • Project
      • Settings
      • Access Management
      • Roles & Permissions
    • Device
      • Settings
    • Storage
      • Time Series Storage
    • Functions
      • Decoder Function
        • LoRaWAN Device Template Decoder
        • LoRaWAN Custom Decoder
        • Hex Payload Decoder
      • Transformation Function
      • Rule Function
        • Send Email
        • Webhooks
        • Slack
        • Twilio
        • Mailgun
        • SendGrid
      • Storage Function
        • AWS Redshift
        • Google BigQuery
        • MQTT Publish
        • MongoDB Time Series
      • Scheduled Function
        • HTTP
      • Function Settings
      • Function Templates
        • Settings
    • Monitoring
      • Dashboards
        • Setup & Configuration
        • Widgets
          • Chart
          • State Timeline
          • Gauge
          • Stat
          • Headline
          • Aggregated Chart
          • Map
          • Battery
          • Image
          • Image Map
          • Table
          • Storage Table
          • Iframe
          • Blob Storage
        • Settings
        • Access Management
        • Roles & Permission
      • Blueprints
        • Setup & Configuration
        • Settings
    • Credentials
      • API Keys
      • External Credentials
        • Slack
        • Mailgun
        • SendGrid
        • Twilio
        • AWS Redshift
        • MQTT
        • MongoDB
        • The Things Stack
      • Webhook Signing Key
  • Add-Ons
    • Storage Views
    • Aggregated View
    • Archived Views
    • Blob Storage
    • Managed Email
    • Audit Log
    • MCP Server
  • Organizations
    • Overview
    • General
    • Groups
    • Members & Roles
      • Read Only
      • Read/Write
      • Admin
    • Custom Roles
    • Add-Ons
    • Billing
    • Invoices
    • White-Label
  • Account Management
    • Personal Accounts
Powered by GitBook
On this page
  • Specifications
  • Create an HTTP Source
Export as PDF
  1. Data Sources

HTTP

Send JSON payloads from your devices or applications to Qubitro via a simple HTTP endpoint.

HTTP provides a straightforward way to send data from your devices or applications to Qubitro.

By making an HTTP POST request to Qubitro’s webhook endpoint, you can securely transmit JSON payloads for storage and further processing.

Specifications

Parameter
Description

Endpoint

https://webhook.qubitro.com/integrations/http

Method

POST

Data Format

Valid JSON is required by default.

Content-Type

application/json

Authorization

Basic (Device Token from Qubitro)

Qubitro rejects any request that does not contain valid JSON. Make sure your payload is properly formatted.

Example CURL Command

Use the Device Token as your Basic authorization header. Replace the placeholder token below with the one from your Unique IDs card.

curl --location 'https://webhook.qubitro.com/integrations/http' \
  --header 'Authorization: Basic <YOUR_DEVICE_TOKEN>' \
  --header 'Content-Type: application/json' \
  --data '{ "Temperature": 30.5 }'

This request sends a JSON payload containing "Temperature": 30.5 to Qubitro. Make sure your payload follows valid JSON formatting to ensure successful ingestion.

Create an HTTP Source

1

Navigate to the Project Detail Page

Go to the project where you want to create an HTTP source.

2

Create a New Source

Click New Source, then select HTTP from the available options.

3

Fill Out the Required Information

Enter details according to your configuration needs.

4

Create & Verify

Click Create. Qubitro automatically generates the Device ID and Device Token. Verify these credentials in the Device Settings under the Unique IDs card.

PreviousMQTTNextProject

Last updated 2 months ago