Create a group when a deal is won
A CRM trigger fires, an HTTP Request node posts the group subject and the participants pulled from the deal record, and a Set node stores the returned group id back on the deal so later steps can address it.
POST /groups Create a group
curl --request POST \
--url https://api.wapito.com/v1/groups \
--header 'Authorization: Bearer wpt_YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '{"subject":"Acme Launch Team","participants":["+15551234567","+15559876543"],"description":"Coordination for the Q3 launch. Keep it on topic."}'