Low data notification - opt In
POST
/v2/notifications/opt-in
notification via webhook
delivered via your webhook implementation, provide your webhook
implementation url
Request Request Example
Shell
JavaScript
Java
Swift
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"
}'
Response Response Example
200 - Get the webhook based notification on low data - Get the webhook based notification on low data
{
"data": {
"notification": {
"type": "webhook_low_data",
"contact_point": "https://example.com"
}
},
"meta": {
"message": "success"
}
}
Request
Header Params
Accept
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {{token}}
Body Params application/json
Responses
Modified at 2024-12-17 16:56:09