Skip to main content

GET /contact-books/:id/contacts/:contactId

Returns a single contact from the specified contact book.

Authentication

JWT Bearer token (dashboard auth)

Response

{
  "success": true,
  "data": {
    "contact": {
      "id": "660e8400-e29b-41d4-a716-446655440000",
      "contact_book_id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "jane@example.com",
      "first_name": "Jane",
      "last_name": "Doe",
      "subscribed": true,
      "properties": {
        "company": "Acme Inc"
      },
      "created_at": "2026-03-07T12:00:00Z",
      "updated_at": "2026-03-07T12:00:00Z"
    }
  }
}

Errors

StatusErrorCause
404Contact not foundInvalid contact ID or not in this book