You will find here GetSales.io Public API documentation
GetSales.io Public API (3.0)
Download OpenAPI description
Overview
Languages
Servers
Production environment
https://amazing.getsales.io/
- Production environmenthttps://amazing.getsales.io/leads/api/lists 
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
  'https://amazing.getsales.io/leads/api/lists?limit=20&offset=0&order_field=created_at&order_type=asc&q=string&uuid=string&name=string&user_id=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" } ]
- Production environmenthttps://amazing.getsales.io/leads/api/lists 
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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"
  }'Response
application/json
{ "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" }
- Production environmenthttps://amazing.getsales.io/leads/api/lists/{uuid} 
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
  'https://amazing.getsales.io/leads/api/lists/{uuid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" }