Create a device alert rule
curl --request POST \
--url https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"alertType": "device_replacement",
"name": "macOS 4-Year Swap",
"condition": {
"combinator": "and",
"conditions": [
{
"attribute": "preset.last_activity_from_mdm",
"operator": "stale_for_days",
"value": "30"
}
]
},
"description": "Flag macOS devices older than 4 years",
"deviceGroupId": 7,
"urgency": "warning",
"isEnabled": true
}
'import requests
url = "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules"
payload = {
"alertType": "device_replacement",
"name": "macOS 4-Year Swap",
"condition": {
"combinator": "and",
"conditions": [
{
"attribute": "preset.last_activity_from_mdm",
"operator": "stale_for_days",
"value": "30"
}
]
},
"description": "Flag macOS devices older than 4 years",
"deviceGroupId": 7,
"urgency": "warning",
"isEnabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
alertType: 'device_replacement',
name: 'macOS 4-Year Swap',
condition: {
combinator: 'and',
conditions: [
{
attribute: 'preset.last_activity_from_mdm',
operator: 'stale_for_days',
value: '30'
}
]
},
description: 'Flag macOS devices older than 4 years',
deviceGroupId: 7,
urgency: 'warning',
isEnabled: true
})
};
fetch('https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'alertType' => 'device_replacement',
'name' => 'macOS 4-Year Swap',
'condition' => [
'combinator' => 'and',
'conditions' => [
[
'attribute' => 'preset.last_activity_from_mdm',
'operator' => 'stale_for_days',
'value' => '30'
]
]
],
'description' => 'Flag macOS devices older than 4 years',
'deviceGroupId' => 7,
'urgency' => 'warning',
'isEnabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules"
payload := strings.NewReader("{\n \"alertType\": \"device_replacement\",\n \"name\": \"macOS 4-Year Swap\",\n \"condition\": {\n \"combinator\": \"and\",\n \"conditions\": [\n {\n \"attribute\": \"preset.last_activity_from_mdm\",\n \"operator\": \"stale_for_days\",\n \"value\": \"30\"\n }\n ]\n },\n \"description\": \"Flag macOS devices older than 4 years\",\n \"deviceGroupId\": 7,\n \"urgency\": \"warning\",\n \"isEnabled\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"alertType\": \"device_replacement\",\n \"name\": \"macOS 4-Year Swap\",\n \"condition\": {\n \"combinator\": \"and\",\n \"conditions\": [\n {\n \"attribute\": \"preset.last_activity_from_mdm\",\n \"operator\": \"stale_for_days\",\n \"value\": \"30\"\n }\n ]\n },\n \"description\": \"Flag macOS devices older than 4 years\",\n \"deviceGroupId\": 7,\n \"urgency\": \"warning\",\n \"isEnabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"alertType\": \"device_replacement\",\n \"name\": \"macOS 4-Year Swap\",\n \"condition\": {\n \"combinator\": \"and\",\n \"conditions\": [\n {\n \"attribute\": \"preset.last_activity_from_mdm\",\n \"operator\": \"stale_for_days\",\n \"value\": \"30\"\n }\n ]\n },\n \"description\": \"Flag macOS devices older than 4 years\",\n \"deviceGroupId\": 7,\n \"urgency\": \"warning\",\n \"isEnabled\": true\n}"
response = http.request(request)
puts response.read_body{
"id": 42,
"alertType": "device_replacement",
"name": "macOS 4-Year Swap",
"urgency": "warning",
"description": "<string>",
"deviceGroupId": 7,
"isStandard": true,
"condition": {
"combinator": "and",
"conditions": [
{
"attribute": "preset.last_activity_from_mdm",
"operator": "stale_for_days",
"value": "30"
}
]
},
"isEnabled": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Devices
Create a device alert rule
Create a device alert rule bound to a device group.
POST
/
api
/
v1
/
organizations
/
{organizationId}
/
devices
/
device-alert-rules
Create a device alert rule
curl --request POST \
--url https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"alertType": "device_replacement",
"name": "macOS 4-Year Swap",
"condition": {
"combinator": "and",
"conditions": [
{
"attribute": "preset.last_activity_from_mdm",
"operator": "stale_for_days",
"value": "30"
}
]
},
"description": "Flag macOS devices older than 4 years",
"deviceGroupId": 7,
"urgency": "warning",
"isEnabled": true
}
'import requests
url = "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules"
payload = {
"alertType": "device_replacement",
"name": "macOS 4-Year Swap",
"condition": {
"combinator": "and",
"conditions": [
{
"attribute": "preset.last_activity_from_mdm",
"operator": "stale_for_days",
"value": "30"
}
]
},
"description": "Flag macOS devices older than 4 years",
"deviceGroupId": 7,
"urgency": "warning",
"isEnabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
alertType: 'device_replacement',
name: 'macOS 4-Year Swap',
condition: {
combinator: 'and',
conditions: [
{
attribute: 'preset.last_activity_from_mdm',
operator: 'stale_for_days',
value: '30'
}
]
},
description: 'Flag macOS devices older than 4 years',
deviceGroupId: 7,
urgency: 'warning',
isEnabled: true
})
};
fetch('https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'alertType' => 'device_replacement',
'name' => 'macOS 4-Year Swap',
'condition' => [
'combinator' => 'and',
'conditions' => [
[
'attribute' => 'preset.last_activity_from_mdm',
'operator' => 'stale_for_days',
'value' => '30'
]
]
],
'description' => 'Flag macOS devices older than 4 years',
'deviceGroupId' => 7,
'urgency' => 'warning',
'isEnabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules"
payload := strings.NewReader("{\n \"alertType\": \"device_replacement\",\n \"name\": \"macOS 4-Year Swap\",\n \"condition\": {\n \"combinator\": \"and\",\n \"conditions\": [\n {\n \"attribute\": \"preset.last_activity_from_mdm\",\n \"operator\": \"stale_for_days\",\n \"value\": \"30\"\n }\n ]\n },\n \"description\": \"Flag macOS devices older than 4 years\",\n \"deviceGroupId\": 7,\n \"urgency\": \"warning\",\n \"isEnabled\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"alertType\": \"device_replacement\",\n \"name\": \"macOS 4-Year Swap\",\n \"condition\": {\n \"combinator\": \"and\",\n \"conditions\": [\n {\n \"attribute\": \"preset.last_activity_from_mdm\",\n \"operator\": \"stale_for_days\",\n \"value\": \"30\"\n }\n ]\n },\n \"description\": \"Flag macOS devices older than 4 years\",\n \"deviceGroupId\": 7,\n \"urgency\": \"warning\",\n \"isEnabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/devices/device-alert-rules")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"alertType\": \"device_replacement\",\n \"name\": \"macOS 4-Year Swap\",\n \"condition\": {\n \"combinator\": \"and\",\n \"conditions\": [\n {\n \"attribute\": \"preset.last_activity_from_mdm\",\n \"operator\": \"stale_for_days\",\n \"value\": \"30\"\n }\n ]\n },\n \"description\": \"Flag macOS devices older than 4 years\",\n \"deviceGroupId\": 7,\n \"urgency\": \"warning\",\n \"isEnabled\": true\n}"
response = http.request(request)
puts response.read_body{
"id": 42,
"alertType": "device_replacement",
"name": "macOS 4-Year Swap",
"urgency": "warning",
"description": "<string>",
"deviceGroupId": 7,
"isStandard": true,
"condition": {
"combinator": "and",
"conditions": [
{
"attribute": "preset.last_activity_from_mdm",
"operator": "stale_for_days",
"value": "30"
}
]
},
"isEnabled": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}承認
パスパラメータ
ボディ
application/json
Device alert type the rule belongs to
利用可能なオプション:
device_unreturned_assigned, device_unreturned_leased, device_replacement, device_inactive, device_mdm_compliance, device_inventory_shortage 例:
"device_replacement"
Rule display name (unique per org)
例:
"macOS 4-Year Swap"
Show child attributes
Show child attributes
例:
"Flag macOS devices older than 4 years"
ID of the device group whose members are evaluated. Omit to target every device in the organization.
例:
7
Urgency of alerts generated by this rule (defaults to warning)
利用可能なオプション:
critical, warning レスポンス
例:
42
利用可能なオプション:
retired_account, inactive_account, on_leave_account, unknown_account, public_files, device_unreturned_assigned, device_unreturned_leased, device_replacement, device_inactive, device_mdm_compliance, device_inventory_shortage 例:
"device_replacement"
例:
"macOS 4-Year Swap"
利用可能なオプション:
critical, warning 例:
"warning"
Null when the rule targets all devices in the organization — always the case for the Standard Rule, and allowed for custom rules. Use isStandard to tell the two apart.
例:
7
Standard Rule targets all devices and cannot be deleted
Show child attributes
Show child attributes
最終更新日 2026年9月15日
このページは役に立ちましたか?

