# Returns a list of contacts Retrieve a paginated list of contacts from the CRM module of the PMS. This endpoint supports optional query parameters to filter the results, including email address, first name, last name, telephone number, and account ID. If no filters are provided, the endpoint returns all available contacts in the system. The response includes a paginated list of contact records with key details, such as names and contact information, making it suitable for displaying contact directories or integrating with external systems. Pagination parameters can also be used to control the size and order of the result set. Endpoint: GET /api/v3/contacts Version: 3.0.9 Security: OAuth2 ## Query parameters: - `emailAddress` (string) Email address of the contact - `firstName` (string) First name of the contact - `lastName` (string) Last name of the contact - `telephoneNumber` (string) Telephone number of the contact - `accountId` (integer) Account ID of the contact ## Response 200 fields (application/json): - `content` (array) - `content.companyId` (integer) Company ID of the contact - `content.accountId` (string) Account ID of the contact - `content.marketSegment` (string) Market segment of the contact - `content.telephoneNumber` (string) Telephone number of the contact - `content.accountCode` (string) Account code of the contact - `content.lifecycleStage` (string) Lifecycle stage of the contact - `content.companyName` (string) Company name of the contact - `content.addressLine1` (string) Address line 1 of the contact - `content.addressLine2` (string) Address line 2 of the contact - `content.status` (string) Status of the contact - `content.firstName` (string) First name of the contact - `content.lastName` (string) Last name of the contact - `content.city` (string) City of the contact - `content.referrer` (string) Referrer of the contact - `content.industry` (string) Industry of the contact - `content.postCode` (string) Post code of the contact - `content.emailAddress` (string) Email address of the contact - `content.id` (integer) ID of the contact - `content.source` (string) Source of the contact - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)