Webhooks

Webhooks provides another way to communicate with Godmode. A Webhook is a web address that your application registers with the Godmode API to receive event-based messages.

Webhook message will be made as a request using HTTP POST and with the details of the message in the JSON body. To register a webhook, reach out to us and we will help you get set up.

Godmode currently supports webhooks for when a Godmode run is done. The JSON body has the following shape:

{
    "run": {
        "id": "<uuid>"
        "status": "pending",
        "input": {},
        "output": {}
    }
}

Last updated