curl --request POST \
--url 'https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"limit": 20,
"p": 0
}
'import requests
url = "https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key="
payload = {
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"limit": 20,
"p": 0
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({application_id: 'WoyQQ3BohkdtPivubEvE8o', limit: 20, p: 0})
};
fetch('https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=', 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.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=",
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([
'application_id' => 'WoyQQ3BohkdtPivubEvE8o',
'limit' => 20,
'p' => 0
]),
CURLOPT_HTTPHEADER => [
"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.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key="
payload := strings.NewReader("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"limit\": 20,\n \"p\": 0\n}")
req, _ := http.NewRequest("POST", url, payload)
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.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"limit\": 20,\n \"p\": 0\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"limit\": 20,\n \"p\": 0\n}"
response = http.request(request)
puts response.read_body{
"data": {
"has_next_page": false,
"items": [
{
"rules": [
{
"account_id": 3790925372131,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"created_at": 1785744052160,
"created_by": 3790925372131,
"deleted_at": 0,
"description": "Downgrade known extension errors to Info",
"filters": [
[
{
"key": "error.error_message",
"oper": "IN",
"vals": [
"/^ResizeObserver loop.*|.*chrome-extension:\\/\\/.*/"
]
}
]
],
"id": 4820,
"priority": 1,
"rule_id": "n8mZQ2VbXk4wPRs6DfC9Ay",
"rule_name": "Known noisy browser extension errors",
"severity": "Info",
"status": "enabled",
"updated_at": 1785744052160,
"updated_by": 3790925372131
},
{
"account_id": 3790925372131,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"created_at": 1785830452160,
"created_by": 3790925372131,
"deleted_at": 0,
"description": "Escalate production crashes to Critical severity",
"filters": [
[
{
"key": "error.env",
"oper": "IN",
"vals": [
"production"
]
},
{
"key": "error.is_crash",
"oper": "IN",
"vals": [
"true"
]
}
]
],
"id": 4821,
"priority": 2,
"rule_id": "TAHUYnQmXKzgMS4TFVUKvz",
"rule_name": "Critical crash spikes",
"severity": "Critical",
"status": "enabled",
"updated_at": 1785830452160,
"updated_by": 3790925372131
}
],
"updated_at": 1785916852160,
"updated_by": 2476444212131,
"updated_by_name": "Alice Chen",
"version": 3
},
{
"rules": [
{
"account_id": 3790925372131,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"created_at": 1785744052160,
"created_by": 3790925372131,
"deleted_at": 0,
"description": "Downgrade known extension errors to Info",
"filters": [
[
{
"key": "error.error_message",
"oper": "IN",
"vals": [
"/^ResizeObserver loop.*|.*chrome-extension:\\/\\/.*/"
]
}
]
],
"id": 4820,
"priority": 1,
"rule_id": "n8mZQ2VbXk4wPRs6DfC9Ay",
"rule_name": "Known noisy browser extension errors",
"severity": "Info",
"status": "enabled",
"updated_at": 1785744052160,
"updated_by": 3790925372131
}
],
"updated_at": 1785830452160,
"updated_by": 3790925372131,
"updated_by_name": "Bob Zhang",
"version": 2
},
{
"rules": [],
"updated_at": 1785744052160,
"updated_by": 3790925372131,
"updated_by_name": "Bob Zhang",
"version": 1
}
],
"total": 3
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}List preset severity rule history
Return the change history of preset severity rules for a RUM application.
curl --request POST \
--url 'https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"limit": 20,
"p": 0
}
'import requests
url = "https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key="
payload = {
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"limit": 20,
"p": 0
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({application_id: 'WoyQQ3BohkdtPivubEvE8o', limit: 20, p: 0})
};
fetch('https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=', 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.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=",
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([
'application_id' => 'WoyQQ3BohkdtPivubEvE8o',
'limit' => 20,
'p' => 0
]),
CURLOPT_HTTPHEADER => [
"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.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key="
payload := strings.NewReader("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"limit\": 20,\n \"p\": 0\n}")
req, _ := http.NewRequest("POST", url, payload)
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.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"limit\": 20,\n \"p\": 0\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/rum/issue/preset-severity/rules/history/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"limit\": 20,\n \"p\": 0\n}"
response = http.request(request)
puts response.read_body{
"data": {
"has_next_page": false,
"items": [
{
"rules": [
{
"account_id": 3790925372131,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"created_at": 1785744052160,
"created_by": 3790925372131,
"deleted_at": 0,
"description": "Downgrade known extension errors to Info",
"filters": [
[
{
"key": "error.error_message",
"oper": "IN",
"vals": [
"/^ResizeObserver loop.*|.*chrome-extension:\\/\\/.*/"
]
}
]
],
"id": 4820,
"priority": 1,
"rule_id": "n8mZQ2VbXk4wPRs6DfC9Ay",
"rule_name": "Known noisy browser extension errors",
"severity": "Info",
"status": "enabled",
"updated_at": 1785744052160,
"updated_by": 3790925372131
},
{
"account_id": 3790925372131,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"created_at": 1785830452160,
"created_by": 3790925372131,
"deleted_at": 0,
"description": "Escalate production crashes to Critical severity",
"filters": [
[
{
"key": "error.env",
"oper": "IN",
"vals": [
"production"
]
},
{
"key": "error.is_crash",
"oper": "IN",
"vals": [
"true"
]
}
]
],
"id": 4821,
"priority": 2,
"rule_id": "TAHUYnQmXKzgMS4TFVUKvz",
"rule_name": "Critical crash spikes",
"severity": "Critical",
"status": "enabled",
"updated_at": 1785830452160,
"updated_by": 3790925372131
}
],
"updated_at": 1785916852160,
"updated_by": 2476444212131,
"updated_by_name": "Alice Chen",
"version": 3
},
{
"rules": [
{
"account_id": 3790925372131,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"created_at": 1785744052160,
"created_by": 3790925372131,
"deleted_at": 0,
"description": "Downgrade known extension errors to Info",
"filters": [
[
{
"key": "error.error_message",
"oper": "IN",
"vals": [
"/^ResizeObserver loop.*|.*chrome-extension:\\/\\/.*/"
]
}
]
],
"id": 4820,
"priority": 1,
"rule_id": "n8mZQ2VbXk4wPRs6DfC9Ay",
"rule_name": "Known noisy browser extension errors",
"severity": "Info",
"status": "enabled",
"updated_at": 1785744052160,
"updated_by": 3790925372131
}
],
"updated_at": 1785830452160,
"updated_by": 3790925372131,
"updated_by_name": "Bob Zhang",
"version": 2
},
{
"rules": [],
"updated_at": 1785744052160,
"updated_by": 3790925372131,
"updated_by_name": "Bob Zhang",
"version": 1
}
],
"total": 3
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}Restrictions
| Aspect | Value |
|---|---|
| Rate limits | 1,000 requests/minute; 50 requests/second per account |
| Permissions | None — any valid app_key can call this operation |
Usage
- Each entry is an application-level snapshot of every rule as it existed immediately before the mutation that produced it — not a diff. A fresh snapshot is written before every create/update/enable/disable/delete/reorder/revert call that actually changes something — an
updatecarrying none of the mutable fields returns success without writing one — soversion=1is typically an empty rule set captured just before the first rule was ever created. rulesitems carry the full internal row (includingaccount_id,created_by,id,deleted_at), which is a wider shape than the one returned byrules/list.limitdefaults to 20 and is silently capped at 100 rather than rejected.orderbyaccepts onlyupdated_atorversion; any other value (including omitted) falls back toupdated_atrather than erroring.- Results sort descending by default; pass
asc=truefor ascending order.
Authorizations
App key issued from the Flashduty console under Account → APP Keys. Required on every public API call. Keep it secret — it grants the same access as the owning account.
Body
Filters for listing preset severity rule change history.
RUM application ID. Get application IDs via POST /rum/application/list.
Sort ascending when true; results are descending by default.
Page size. Values <= 0 default to 20; values above 100 are capped at 100.
x <= 100Sort column. Any other value (including omitted) falls back to updated_at.
updated_at, version Zero-based page number.
x >= 0Response
Success
Success response envelope. On every 2xx response, request_id identifies the call (also mirrored in the Flashcat-Request-Id header) and data holds the endpoint-specific payload. Failure responses use a different shape — see ErrorResponse.
Was this page helpful?