Losant · Example Payload

Losant Auth Api Authenticate User Example

IoTInternet of ThingsDevicesEdge ComputeEmbeddedMQTTIndustrial IoTTelemetryWorkflow-AutomationVisual Workflow EngineDashboardsTime SeriesConnected ProductsEnterprise

Losant Auth Api Authenticate User 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": "Authenticate User Example",
  "description": null,
  "request": {
    "method": "POST",
    "url": "https://api.losant.com/auth",
    "headers": {
      "Authorization": "Bearer eyJhbGciOi... (Losant JWT)",
      "Accept": "application/json",
      "Content-Type": "application/json"
    },
    "body": {
      "email": "user@example.com",
      "password": "replace-me"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "userId": null,
      "token": null,
      "needsToVerifyEmail": true,
      "orgId": null
    }
  }
}