Hi,
I'm sending a Post request via Workflow whenever a Opportunity update matches the criteria.
Information is like this:
Content-Type: None
Payload:
{
"assignedUserId": "{$assignedUserId}",
"contactsIds": "{$contactsIds}",
"name": "{$name}",
"stage": "{$stage}",
"teamsIds": "{$teamsIds}",
"type": "{$type}"
}
But the data i'm receiving is missig the "contactsIds" and "teamsIds" attributes:
{
5f4d0310425dda68f
Name Test
Contact
cartAbandonment
}
I'm doing it the wrong way? Or there is another way to pass this attributes via Post request?
I'm sending a Post request via Workflow whenever a Opportunity update matches the criteria.
Information is like this:
Content-Type: None
Payload:
{
"assignedUserId": "{$assignedUserId}",
"contactsIds": "{$contactsIds}",
"name": "{$name}",
"stage": "{$stage}",
"teamsIds": "{$teamsIds}",
"type": "{$type}"
}
But the data i'm receiving is missig the "contactsIds" and "teamsIds" attributes:
{
5f4d0310425dda68f
Name Test
Contact
cartAbandonment
}
I'm doing it the wrong way? Or there is another way to pass this attributes via Post request?
Comment