Where is the "input" field on the webhooks?
Last year, around October, I was using webhooks to get notifications of async jobs. The "input" field was included on the webhook payload, along with the "output", "status" and other fields that I don't remember know.
I find today that the "input" is no longer included in the webhook payload? Is this documented somewhere? Thanks.
4 Replies
Are you using
webhook
or webhookV2
?
input
field is not included in webhookV2
.I am using whatever is the default. I just created a new endpoint. Where is documentation for this?
There is no default, you either specify
webhook
or webhookV2
in your payload, if you don't then no webhook is triggered.Ok. I was using the request tab in the endpoint page, running the job async and checking the status. In the documentation somewhere, it said that the webhook payload would be equal to the
/status/{job_id}
endpoint.
I will try a proper webhook then.
Yep, testing a proper webhook i see the input there. Thanks !