Hi Teams,
How i can pass some "data" to the custom service action in JSON ?
I try to have $body in the Additional Parameters Json format.
i have try :
"{$body}"
"{$$body}" .... see below
Thanks
How i can pass some "data" to the custom service action in JSON ?
I try to have $body in the Additional Parameters Json format.
i have try :
"{$body}"
"{$$body}" .... see below
Thanks
PHP Code:
{
"espoRecordId": "{$id}",
"name": "{$name}",
"userId": "{$assignedUserId}",
"intValue": {$$myIntegerVariable},
"boolValue": {$$myBooleanVariable},
"stringValue": "{$$myStringVariable}"
}
Comment