Verizon · Schema

RegisterCallbackRequest

Request to register a callback

WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

Properties

Name Type Description
name string Service name for the callback
url string URL to receive callbacks
username string Username for callback endpoint authentication
password string Password for callback endpoint authentication
View JSON Schema on GitHub

JSON Schema

thingspace-connectivity-register-callback-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-register-callback-request-schema.json",
  "title": "RegisterCallbackRequest",
  "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"
  ]
}