Skip to main content
GET
/
api
/
v1
/
contacts
List all contacts
curl --request GET \
  --url https://app.sajn.se/api/v1/contacts \
  --header 'authorization: <authorization>'
{
  "contacts": [
    {
      "id": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "ssn": "<string>",
      "externalId": "<string>",
      "createdAt": "<any>",
      "updatedAt": "<any>",
      "companyRole": "<string>",
      "company": {
        "id": "<string>",
        "name": "<string>",
        "orgNumber": "<string>"
      }
    }
  ],
  "totalPages": 123
}

Headers

authorization
string
required

Bearer token for API authentication

Response

200

contacts
object[]
required
totalPages
number
required
I