Verizon · JSON Structure

Thingspace Connectivity Register Callback Request Structure

Request to register a callback

Type: object Properties: 4 Required: 2
WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

RegisterCallbackRequest is a JSON Structure definition published by Verizon, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name url username password

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verizon/refs/heads/main/json-structure/thingspace-connectivity-register-callback-request-structure.json",
  "description": "Request to register a callback",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Service name for the callback",
      "example": "CarrierService"
    },
    "url": {
      "type": "string",
      "description": "URL to receive callbacks",
      "example": "https://your-callback.example.com/carrier"
    },
    "username": {
      "type": "string",
      "description": "Username for callback endpoint authentication"
    },
    "password": {
      "type": "string",
      "description": "Password for callback endpoint authentication"
    }
  },
  "required": [
    "name",
    "url"
  ],
  "name": "RegisterCallbackRequest"
}