Back

Version 15

7/21/2023
const runPostSaveMessage = (async () => {
const response = await fetch(
"https://api.val.town/v1/run/chris_symbiote.saveMessage",
{
method: "POST",
headers: {
"Accept": "application/json",
"Content-Type": "application/json",
},
body: JSON.stringify({ message: "Textual content" }),
},
);
console.log(response);
return "ok1";
})();
Updated: October 23, 2023