POST /callbacks
You can register a URL endpoint at which an account will receive callback messages containing Live Streamed RF data for an IOT device from the Diagnostics Service. To receive these callbacks you have to set up a device Diagnostics observation using Start Diagnostics Observation.
The callback messages will be REST messages POSTed to the target URLs. You are responsible for creating and running a listening process on your server at those URLs to receive and parse the messages.
Diagnostics observation callbacks will be issued at the frequency and duration requested in Start Diagnostics Observation.
Callback messages are secured with a shared secret key and SHA256 HMAC signatures. The response to this request (to register a callback listener) will contain the secret key in the header, and you must save the shared key to be able to authenticate and validate callback messages.
POST https://thingspace.verizon.com/api/diagnostics/v1/callbacks
None.
The request header must contain a current ThingSpace authorization bearer token and a valid VZ-M2M session token, and must set the content-type to JSON.
Parameter Name | Data Type | Description |
---|---|---|
Authorization required |
string | HTTP Authorization bearer token. |
VZ-M2M-Token required |
string | A valid session token returned by POST /api/m2m/v1/session/login. |
Content-Type required |
string | Must be application/json . |
The body specifies the callback service that is being subscribed to and the URL where the listening service is running.
Parameter Name | Data Type | Description |
---|---|---|
accountName required |
string | The name of the billing account for which callback messages will be sent. |
serviceName required |
string | The name of the callback service, which identifies the type and format of messages that will be sent to the registered URL. |
endpoint required |
string | The URL for your web server. |
httpHeaders | string | Your http headers. |
{
"accountName": "TestQAAccount",
"serviceName": "Diagnostics",
"endpoint": "https://yourwebsite.com",
"httpHeaders": {}
}
Status 200
Parameter Name | Data Type | Description |
---|---|---|
accountName | string | The name of the billing account for which callback messages will be sent. |
serviceName | string | The name of the callback service, which identifies the type and format of messages that will be sent to the registered URL. |
endpoint | string | The URL for your web server. |
httpHeaders | string | Your http headers. |
createdOn | string($date-time) | The date and time of when this request was created. |
{
"accountName": "TestQAAccount",
"serviceName": "string",
"endpoint": "https://yourwebsite.com",
"httpHeaders": {},
"createdOn": "2019-09-07T23:57:53.292Z"
}
Status 400
All error messages are returned in this format:
{
"errorCode": "error code string",
"errorMessage": "error message string"
}
Error codes and messages are listed on the Error Codes page, along with explanations and suggestions for corrective actions.