Skip to main content
POST
/
api
/
v1
/
compliance
/
webhook
Compliance Webhook
import requests

url = "https://www.datalab.to/api/v1/compliance/webhook"

response = requests.post(url)

print(response.text)
curl --request POST \
--url https://www.datalab.to/api/v1/compliance/webhook
const options = {method: 'POST'};

fetch('https://www.datalab.to/api/v1/compliance/webhook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://www.datalab.to/api/v1/compliance/webhook"

req, _ := http.NewRequest("POST", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
{}

Response

200 - application/json

Successful Response

The response is of type Response Compliance Webhook Api V1 Compliance Webhook Post · object.