curl -X POST https://api.reveniq.com/v1/webhooks -H 'Authorization: YOUR_API_TOKEN_HERE' -H 'Content-Type: application/json'-d '{}'
require 'uri'require 'net/http' url = URI("https://api.reveniq.com/v1/webhooks") http = Net::HTTP.new(url.host, url.port) request = Net::HTTP::Post.new(url)request["Content-Type"] = 'application/json'request["Authorization"] = 'YOUR_API_TOKEN_HERE'request.body = '{}' response = http.request(request)puts response.read_body
HttpResponse<String> response = Unirest.post("https://api.reveniq.com/v1/webhooks") .header("Content-Type", "application/json") .header("Authorization", "YOUR_API_TOKEN_HERE") .body('{}') .asString();
import requests url = "https://api.reveniq.com/v1/webhooks" payload = '{}'headers = { 'Content-Type': "application/json", 'Authorization': "YOUR_API_TOKEN_HERE", } response = requests.request("POST", url, data=payload, headers=headers) print(response.text)
var data = '{}'; var xhr = new XMLHttpRequest(); xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); }}); xhr.open("POST", "https://api.reveniq.com/v1/webhooks");xhr.setRequestHeader("Content-Type", "application/json");xhr.setRequestHeader("Authorization", "YOUR_API_TOKEN_HERE"); xhr.send(data);