The webhook event is a generic event which provisions a unique URL for your agent. You must add the webhook event to invoke your agent from the dashboard
@on("webhook")
def agent(input):
    pass
The following is an example payload which is passed in as an argument to your agent’s entrypoint:
{
    "text": "Hello world!"
}

Fields

text
string
The message to the agent.