Skip to main content

GET /contact-books

Returns all contact books for the authenticated user, including the number of contacts in each book.

Authentication

JWT Bearer token (dashboard auth)

Response

{
  "success": true,
  "data": {
    "contactBooks": [
      {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "user_id": "user_uuid",
        "name": "Newsletter Subscribers",
        "contact_count": 142,
        "created_at": "2026-03-07T12:00:00Z",
        "updated_at": "2026-03-07T12:00:00Z"
      }
    ]
  }
}