Webhook

Webhook notification on rendered successfully

Only available for "async" render mode.

For Async Render mode, we provide a simple webhook notification to your desired endpoint.

With this, you can know when your PDF file is rendered or not.

Method

POST

Payload's Structure

{
    "file": {
        "uuid": "fileUuid",
        "url": "fileUrl",
        "path": "..",
        "size": "..",
        "created_at": ".."s
    }
}

Notes

If you use an External URL (eg your app domain), you need to ensure the DocKing instance can make outbound internet requests.

It won't retry if your endpoint does not return 200 status code.

Last updated