You will find here GetSales.io Public API documentation
You will find here GetSales.io Public API documentation
curl -i -X GET \
'https://amazing.getsales.io/leads/api/lists?limit=20&name=string&offset=0&order_field=created_at&order_type=asc&q=string&user_id=string&uuid=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
[ { "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" } ]
curl -i -X POST \
https://amazing.getsales.io/leads/api/lists \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "CMO Germany"
}'
{ "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" }
curl -i -X GET \
'https://amazing.getsales.io/leads/api/lists/{uuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" }