Send Report Assessment error

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.