---
title: "Retrieves a paginated list of external contacts (customer contacts) with company association details."
method: GET
path: "/api/Contact"
tags: ["Contact"]
---

# Retrieves a paginated list of external contacts (customer contacts) with company association details.

`GET /api/Contact`

## Query parameters

- `UpdatedAfter` string, date-time
- `pageSize` integer
- `pageNumber` integer
- `Sort` string
- `CompanyIDFK` integer

## Response `200`

Returns a paginated list of contacts with company association.

- ContactList — Paginated collection of external contacts.
  - `Contacts` CompanyContact[] — The list of contacts for the current page.
    - `ContactID` integer — The unique identifier of the contact.
    - `CompanyIDFK` integer — The ID of the company this contact belongs to.
    - `CompanyName` string — The name of the company this contact belongs to.
    - `Firstname` string — The contact's first name.
    - `Lastname` string — The contact's last name.
    - `Email` string — The contact's email address.
    - `Phone` string — The contact's phone number.
    - `Mobile` string — The contact's mobile phone number.
    - `PositionTitle` string — The contact's job title or position.
    - `TimeZone` string — The contact's time zone identifier.
    - `DateCreated` string, date-time — The UTC date and time when the contact record was created.
    - `DateUpdated` string, date-time — The UTC date and time when the contact record was last updated.
    - `Roles` RoleDetails[] — The roles assigned to this contact (RoleCode/RoleName), mirroring the Get UserProfile response.
      - `RoleCode` string — Unique code for the role (e.g. Admin, PM, TimesheetUser).
      - `RoleName` string — Display name of the role.
  - `TotalCount` integer — Total number of contacts matching the query.
  - `PageNumber` integer — The current page number (1-based).
  - `PageSize` integer — The number of results per page.

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/avaza/apis/avaza-api-documentation.md) · [All operations](https://skmtc.net/avaza/apis/avaza-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avaza/avaza-api-documentation/versions/1eeadf750514/schema)
