Asking why the result is an error even though I followed and checked the previous instructions.
It appears that the error means that the endpoint in the webhook is expecting âassessment_idâ as a field in the ârequest bodyâ but you are only sending it as a header (âX-Assessment-IDâ). Header and body fields are two separate fields and the server is not going to read one field as the other.
You will have to add a âBodyâ section in your HTTP request. Make sure to set the content type to âmultipart-form-dataâ especially since you are adding a file. Finally add a field named âassessment_idâ with your ID value. Try to keep the header too if the API requires both -but it is the body field that is triggering the error.
Hey @wewe_wewe, to put @Anthony 's fix into exact steps in your HTTP Request node:
Scroll down to Body and toggle it ON
Set Body Content Type to Form-Data (this is what handles file uploads)
Click Add Field and create one named exactly assessment_id with your ID as the value
Keep your file upload field as-is alongside it
You can leave the X-Assessment-ID header in place too, in case the endpoint checks both, just make sure the body field is there since thatâs whatâs actually missing right now
Run it again after that and the error should clear.
