Losant · Example Payload

Losant Application Api Create Application Example

Create a new application

IoTInternet Of ThingsDevicesEdge ComputeEmbeddedMQTTIndustrial IoTTelemetryWorkflow AutomationVisual Workflow EngineDashboardsTime SeriesConnected ProductsEnterprise

Losant Application Api Create Application Example is an example object payload from Losant, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namedescriptionrequestresponse

Example Payload

Raw ↑
{
  "name": "Create Application Example",
  "description": "Create a new application",
  "request": {
    "method": "POST",
    "url": "https://api.losant.com/applications",
    "headers": {
      "Authorization": "Bearer eyJhbGciOi... (Losant JWT)",
      "Accept": "application/json",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Smart Building Demo",
      "description": "Demo IoT application monitoring HVAC and occupancy across a smart office."
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": null
  }
}