Hey team,
Under Scoro there is a node called Find Client. All this does is returns a list for a client profile:
It doesn’t actually find a client.
This is the curl request for what a useful request might be if it was “search for a client by client name”:
curl -X POST “https://{{companyID}}.scoro.com/api/v2/contacts/list”
-H “Content-Type: application/json”
-d ‘{
“company_account_id”: “{{companyID}}”,
“user_token”: “{{userToken}}”,
“request”:{},
“filter”: {
“contact_type”: “company”,
“name”: “%{{companyName}}%”
}
}’
