Skip to main content
GET
/
api
/
v1
/
contacts
/
{contactId}
Get specific contact
curl --request GET \
  --url http://localhost:3000/api/v1/contacts/{contactId}
{
  "contact": {
    "id": "68234731e6074232892d18c4",
    "companyName": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "address": "<string>",
    "postCode": "3700 Spiez",
    "position": "<string>",
    "email": "jsmith@example.com",
    "mobile": "<string>",
    "phone": "<string>",
    "website": "<string>",
    "category": "clients",
    "formOfAddress": "<string>",
    "note": "<string>",
    "vatNumber": "<string>",
    "country": "<string>",
    "secondaryAddressLine": "<string>"
  }
}

Path Parameters

contactId
string
required

The id of the specific contact

Response

The contact is returned.

contact
Contact · object

Represents a contact, such as a supplier, client, partner, lead, etc.