Interlace webhook
curl --request POST \
--url https://sandbox.apocor.ai/v1/webhooks/interlace \
--header 'Content-Type: application/json' \
--header 'X-Signature: <x-signature>' \
--data '{}'import requests
url = "https://sandbox.apocor.ai/v1/webhooks/interlace"
payload = {}
headers = {
"X-Signature": "<x-signature>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Signature': '<x-signature>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://sandbox.apocor.ai/v1/webhooks/interlace', 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://sandbox.apocor.ai/v1/webhooks/interlace",
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([
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Signature: <x-signature>"
],
]);
$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://sandbox.apocor.ai/v1/webhooks/interlace"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Signature", "<x-signature>")
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://sandbox.apocor.ai/v1/webhooks/interlace")
.header("X-Signature", "<x-signature>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.apocor.ai/v1/webhooks/interlace")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Signature"] = '<x-signature>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"error": {
"code": "INVALID_CLIENT",
"message": "Invalid client credentials"
}
}Webhooks (inbound)
Interlace webhook
Receives Interlace events. Apocor verifies the X-Signature signature, responds 200 immediately, and processes the event asynchronously. This endpoint is called by Interlace, not by integrators — it is documented here for reference.
POST
/
v1
/
webhooks
/
interlace
Interlace webhook
curl --request POST \
--url https://sandbox.apocor.ai/v1/webhooks/interlace \
--header 'Content-Type: application/json' \
--header 'X-Signature: <x-signature>' \
--data '{}'import requests
url = "https://sandbox.apocor.ai/v1/webhooks/interlace"
payload = {}
headers = {
"X-Signature": "<x-signature>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Signature': '<x-signature>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://sandbox.apocor.ai/v1/webhooks/interlace', 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://sandbox.apocor.ai/v1/webhooks/interlace",
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([
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Signature: <x-signature>"
],
]);
$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://sandbox.apocor.ai/v1/webhooks/interlace"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Signature", "<x-signature>")
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://sandbox.apocor.ai/v1/webhooks/interlace")
.header("X-Signature", "<x-signature>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.apocor.ai/v1/webhooks/interlace")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Signature"] = '<x-signature>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"error": {
"code": "INVALID_CLIENT",
"message": "Invalid client credentials"
}
}Headers
Signature computed by Interlace over the raw body.
Body
application/json
Raw Interlace event payload.
The body is of type object.
Response
Event accepted for processing.
⌘I