My code is sending double quotes in the “body”: “key=value&value={{parameters.value}}”, does anyone have any suggestions?
example:
i write on scenario: test123
i get on my system: test123"
really anoying
Communication
{
"url": "/users/{{parameters.id}}/custom_fields/{{parameters.custom_field_id}}",
"method": "POST",
"headers": { "Content-Type": "application/x-www-form-urlencoded", "accept": "application/json" },
"qs": { },
// Body of the request
"body": "key=value&value={{parameters.value}}"
}
mappable parameters
[
{
"name": "id",
"type": "text",
"label": "User ID",
"required": true
},
{
"name": "custom_field_id",
"type": "select",
"label": "Custom Field ID",
"required": true,
"options": "rpc://ListOfAllAccountCustomfields"
},
{
"name": "value",
"type": "text",
"label": "Value",
"required": true
}
]