You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/src/widgets/uptimerobot/widget.js

21 lines
447 B

import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/v2/{endpoint}?api_key={key}",
proxyHandler: genericProxyHandler,
mappings: {
getmonitors: {
method: "POST",
endpoint: "getMonitors",
body: "format=json&logs=1",
headers: {
"content-type": "application/x-www-form-urlencoded",
"cache-control": "no-cache",
},
},
},
};
export default widget;