Webhook push notification action - OgnianApostolov/builderly-api-docs GitHub Wiki

Model

"PushNotificationWebhook pushNotification_webhook": {
    "email": {
        "type": "string",
        "required": "true"
    },
    "header": {
        "type": "string",
        "required": "true"
    },
    "description": {
        "type": "string",
        "required": "true"
    }
}

Methods

Create new

POST 'https://{{your-builderly-domain}}/webhook/send-push-notification'

method: 'POST'
{
    url: 'https://{{your-builderly-domain}}/webhook/send-push-notification',
    headers: {
        'X-API-KEY': api_key
    },
    json: true,
    body: {}
}

Responses Success - status 201

{ notification }

Error - status 400

{
    error_message
}