type
(required)type
provided is "webhook_low_data":webhook_url
(required): provide the URL of your Webhook implementation. Example: "https://example.com".type
provided is "email_low_data":email
(required): provide the email address to recieve the email notifications .language
(optional): language for the email based notifications. Example: “en”.email
parameter, which will send an email to your inbox asynchronously.curl --location --request POST '/v2/notifications/opt-in' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "webhook_low_data",
"webhook_url": "https://example.com"
}'
{
"data": {
"notification": {
"type": "webhook_low_data",
"contact_point": "https://example.com"
}
},
"meta": {
"message": "success"
}
}