GET
/
contacts
/
{contactId}
Retrieve a contact
curl --request GET \
  --url https://api.helloproper.com/contacts/{contactId} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "email": "<string>",
  "phoneNumber": "<string>"
}

Params

contactId
string
required
Contact id

Response

id
string
The unique identifier for the contact
name
string
The name of the contact
email
string
The email address of the contact
phoneNumber
string
The phone number of the contact.