Details
-
Task
-
Resolution: Done
-
Neutral
-
None
-
None
-
None
-
None
Description
At our Rest client module doc entry, we have a section which explains how to send data through the body attribute.
We have:
WARNING: If you intend to send a list of values in the body, you need to convert the list to a string. To send this:
body: userId: 1 title: aTitle
you need to convert it to and send this:
body: '{"userId": 1, "title": "aTitle"}'
But it is not correct, the correct way to send multiple values is:
body: 'userId={userId}& title ={title}'
Please, update the docs so other costumers don't face issues while trying to send forms with multiple values.
Checklists
Acceptance criteria