Skip to content

Create device trigger

POST
/devices/id/notificationTriggers

Parameters

Path Parameters

id*

device id

Typenumber
Required

Request Body

JSON
{
"name": "string",
"type": "string",
"parameters": {
},
"muteFor": 0,
"lastTriggered": "string",
"delivery": {
},
"id": 0,
"deviceId": 0,
"userId": 0
}

Responses

Body (JSON)
JSON
{
"name": "string",
"type": "string",
"parameters": {
},
"muteFor": 0,
"lastTriggered": "string",
"delivery": {
},
"id": 0,
"deviceId": 0,
"userId": 0
}

Samples

cURL
curl -X POST https://api.lightbug.cloud/api/devices/id/notificationTriggers
JavaScript
fetch("https://api.lightbug.cloud/api/devices/id/notificationTriggers", { method: "POST" })
  .then(response => response.json())
  .then(data => console.log(data));
PHP
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.lightbug.cloud/api/devices/id/notificationTriggers");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Python
import requests
response = requests.post("https://api.lightbug.cloud/api/devices/id/notificationTriggers")
print(response.json())