Salesly API
API Reference

List available contact types

GET
/contacts/types

Authorization

x-api-key<token>

Your tenant API key

In: header

curl -X GET "https://rest.salesly.app/api/v1/developers/contacts/types" \
  -H "x-api-key: <token>"

List of contact types

{
  "data": [
    {
      "id": 0,
      "ref": "client",
      "value": "Client"
    }
  ]
}