Verizon · Schema

SessionLoginRequest

Session login credentials

WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

Properties

Name Type Description
username string ThingSpace account username
password string ThingSpace account password
View JSON Schema on GitHub

JSON Schema

thingspace-connectivity-session-login-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verizon/refs/heads/main/json-schema/thingspace-connectivity-session-login-request-schema.json",
  "title": "SessionLoginRequest",
  "description": "Session login credentials",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "ThingSpace account username",
      "example": "[email protected]"
    },
    "password": {
      "type": "string",
      "description": "ThingSpace account password"
    }
  },
  "required": [
    "username",
    "password"
  ]
}