11.06.2026, 07:49
Try this:
Code:
http = require('socket.http')
json = require('json')
url = 'https://trmnl.com/api/custom_plugins/xxxxxxxxxxxxxxxxxxxxxxxxxxx'
body = json.encode({
merge_variables = {
text = 'Test',
author = 'Pierre',
}
})
resp, code, headers = http.request({
url = url,
method = 'POST',
body = body,
headers = {
['Content-Type'] = 'application/json',
}
})
resp = json.pdecode(resp)
log(resp)