v1
latestOpenAPI 3.0.32026-07-2632131.4 MBPhone Book Entries
Get a specific contact
Retrieves a specific contact by its unique ID.
get/contacts/{contactId}
Path parameters
contactIdstring required
The ID of the contact to retrieve.
Query parameters
fieldsstring
Comma-separated list of fields to include in the response.
Response
Contact retrieved successfully.
Example response
{
"_id": "60d21b4667d0d8992e610c85",
"accountId": "5a5786a0c526211500d261d9",
"fullName": "John Doe",
"firstName": "John",
"lastName": "Doe",
"nickname": "Johnny",
"title": "Mr.",
"company": "Acme Inc.",
"picture": {
"thumbnail": "https://example.com/thumbnail.jpg",
"regular": "https://example.com/regular.jpg",
"large": "https://example.com/large.jpg"
},
"emails": [
"john.doe@example.com",
"johndoe@company.com"
],
"phones": [
"+1234567890",
"+9876543210"
],
"preferredContactMethod": "email",
"email": "john.doe@example.com",
"phone": "+1234567890",
"notes": "Test contact note"
}