Request Body not send - Attribute filled correctly

Hi guys,

I’m using the Flowable Modeler for a DELETE request. My request body contains the attribute like this
${anonAttributes}

In Flowabel Admin I can see that the attribute is correctly filled with
["user.firstname","user.lastname","user.emai","user.phone"]
but the body is send empty.

In BPMN.xml I see the following:

<flowable:field name=“requestBody”>
flowable:expression< ![CDATA[${anonAttributes}]] ></flowable:expression>
</flowable:field>

Does someone know what’s the problem and how to make it work?
Thanks in advance :slight_smile:

Hey @a.jockweg,

The request body is only included for a HTTP POST and PUT. For HTTP DELETE we are not including the body.

See

You can provide a PR to add this functionality.

Cheers,
Filip

Hi @filiphr
thanks for your quick reply. Now everything makes sense :slight_smile:
Cheers,
Antje