> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one ContractContact

> Retrieve a single ContractContact record by its Id.

A **ContractContact** is a key contact entry on a virtual office contract (`CoworkerContract`). Contacts can be directors, company aliases, or nominated recipients, and are used to identify, validate, and handle mail and deliveries addressed to anyone connected to a virtual office contract.

Each entry can be linked to an existing coworker via `CoworkerId`, in which case the coworker's name and email are resolved automatically. Alternatively, provide `FullName` and `Email` directly for contacts who do not have a coworker record.

Use `ContractContactType` to classify the contact:

| Type                 | Description                                                                 |
| -------------------- | --------------------------------------------------------------------------- |
| `Director`           | A director of the company registered under the virtual office contract      |
| `CompanyAlias`       | A trading name or alias used by the company                                 |
| `NominatedRecipient` | A person authorised to receive mail and deliveries on behalf of the company |

## Authentication

<Note>
  This endpoint requires OAuth2 authentication. Include a valid bearer token in the `Authorization` header.
  The authenticated user must be a full unrestricted administrator or have the **`ContractContact-Read`** role.
</Note>

## Path Parameters

<ParamField path="id" type="integer" required>
  The Id of the ContractContact record to retrieve.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/billing/contractcontacts/87654321" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/billing/contractcontacts/87654321',
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

  const record = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://spaces.nexudus.com/api/billing/contractcontacts/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

  record = response.json()
  ```
</CodeGroup>

## Response

### 200

<ResponseField name="CoworkerContractId" type="integer">
  Coworker Contract Id.
</ResponseField>

<ResponseField name="CoworkerContractQuantity" type="integer">
  Coworker Contract Quantity.
</ResponseField>

<ResponseField name="CoworkerContractFloorPlanDeskIds" type="string">
  Coworker Contract Floor Plan Desk Ids.
</ResponseField>

<ResponseField name="CoworkerContractFloorPlanDeskNames" type="string">
  Coworker Contract Floor Plan Desk Names.
</ResponseField>

<ResponseField name="CoworkerContractTariffName" type="string">
  Plan name of the associated virtual office contract.
</ResponseField>

<ResponseField name="CoworkerId" type="integer">
  Coworker Id.
</ResponseField>

<ResponseField name="CoworkerFullName" type="string">
  Full name of the linked coworker.
</ResponseField>

<ResponseField name="CoworkerCompanyName" type="string">
  Company name of the linked coworker.
</ResponseField>

<ResponseField name="CoworkerBillingName" type="string">
  Billing name of the linked coworker.
</ResponseField>

<ResponseField name="CoworkerEmail" type="string">
  Email address of the linked coworker.
</ResponseField>

<ResponseField name="CoworkerActive" type="boolean">
  Coworker Active.
</ResponseField>

<ResponseField name="Email" type="string">
  Email address of the contact. Used when the contact is not linked to a coworker record.
</ResponseField>

<ResponseField name="FullName" type="string">
  Full name of the contact. Used when the contact is not linked to a coworker record.
</ResponseField>

<ResponseField name="DateOfBirth" type="string">
  Date of birth. Used for identity verification purposes.
</ResponseField>

<ResponseField name="Address" type="string">
  Address.
</ResponseField>

<ResponseField name="PostCode" type="string">
  Post code.
</ResponseField>

<ResponseField name="CityName" type="string">
  City name.
</ResponseField>

<ResponseField name="State" type="string">
  State.
</ResponseField>

<ResponseField name="CountryId" type="integer">
  Country Id.
</ResponseField>

<ResponseField name="CountryName" type="string">
  Country name.
</ResponseField>

<ResponseField name="PhoneNumber" type="string">
  Phone number.
</ResponseField>

<ResponseField name="Notes" type="string">
  Notes.
</ResponseField>

<ResponseField name="ContractContactType" type="integer">
  Role of this contact: Director (a company director), CompanyAlias (a trading name), or NominatedRecipient (authorised to receive mail on behalf of the company). See `eContractContactType` enum values: `0` = None, `1` = Director, `2` = CompanyAlias, `3` = NominatedRecipient.
</ResponseField>

<ResponseField name="Id" type="integer">
  Unique record identifier.
</ResponseField>

<ResponseField name="UniqueId" type="string">
  UUID of the record.
</ResponseField>

<ResponseField name="CreatedOn" type="string">
  Date and time the record was created (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedOn" type="string">
  Date and time the record was last updated (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedBy" type="string">
  Email of the user who last updated this record.
</ResponseField>

<ResponseField name="IsNew" type="boolean">
  Whether the record was recently created.
</ResponseField>

<ResponseField name="SystemId" type="string">
  External system identifier.
</ResponseField>

```json Example Response theme={null}
{
  "CoworkerContractId": 0,
  "CoworkerContractQuantity": null,
  "CoworkerContractFloorPlanDeskIds": null,
  "CoworkerContractFloorPlanDeskNames": null,
  "CoworkerContractTariffName": null,
  "CoworkerId": null,
  "CoworkerFullName": null,
  "CoworkerCompanyName": null,
  "CoworkerBillingName": null,
  "CoworkerEmail": null,
  "CoworkerActive": null,
  "Email": null,
  "FullName": "",
  "DateOfBirth": null,
  "Address": null,
  "PostCode": null,
  "CityName": null,
  "State": null,
  "CountryId": null,
  "CountryName": null,
  "PhoneNumber": null,
  "Notes": null,
  "ContractContactType": 0,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "ContractContact Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
