v1 Webhooks (deprecated)
Celantur Cloud API uses webhooks to notify your application when a file has been processed.
Overview
url = 'https://api.celantur.com/v1/file?method=blur&face=True&webhook=https://example.com/webhook/dev?sender=celantur%26approve=always'
response = requests.post(
url,
data=image,
headers={'Authorization': auth_token}
){
customer_id={customer_id}
file_id={file_id}
file_status="done"
original_link="https://api.celantur.com/v1/file/{file_id}/original"
anonymized_link="https://api.celantur.com/v1/file/{file_id}/anonymized"
binary_mask_link="https://api.celantur.com/v1/file/{file_id}/binary-mask"
instance_mask_link="https://api.celantur.com/v1/file/{file_id}/instance-mask"
metadata_link="https://api.celantur.com/v1/file/{file_id}/metadata"
}Prerequisites for webhooks
Encode the webhook URL correctly
Last updated