> ## 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 FloorPlanDeskVariant

> Retrieve a single FloorPlanDeskVariant record by its Id.

A **FloorPlanDeskVariant** defines an alternative visual representation or configuration for a desk on a floor plan. Variants allow the same desk to be displayed differently based on context or state.

## 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 **`FloorPlanDeskVariant-Read`** role.
</Note>

## Path Parameters

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

## Code Examples

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

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/sys/floorplandeskvariants/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/sys/floorplandeskvariants/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

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

## Response

### 200

<ResponseField name="FloorPlanDeskId" type="integer">
  ID of the floor plan desk linked to this record.
</ResponseField>

<ResponseField name="FloorPlanDeskName" type="string">
  Display name of the linked floor plan desk (read-only).
</ResponseField>

<ResponseField name="FloorPlanDeskPrice" type="number">
  The floor plan desk price value for this floor plan desk variant.
</ResponseField>

<ResponseField name="FloorPlanDeskFloorPlanId" type="integer">
  ID of the floor plan desk floor plan associated with this record.
</ResponseField>

<ResponseField name="FloorPlanDeskFloorPlanName" type="string">
  Display name of the linked floor plan desk floor plan (read-only).
</ResponseField>

<ResponseField name="FloorPlanDeskFloorPlanBusinessId" type="integer">
  ID of the floor plan desk floor plan business associated with this record.
</ResponseField>

<ResponseField name="FloorPlanDeskFloorPlanBusinessName" type="string">
  Display name of the linked floor plan desk floor plan business (read-only).
</ResponseField>

<ResponseField name="FloorPlanDeskFloorPlanBusinessCurrencyCode" type="string">
  The floor plan desk floor plan business currency code value for this floor plan desk variant.
</ResponseField>

<ResponseField name="CoworkerId" type="integer">
  ID of the coworker linked to this record.
</ResponseField>

<ResponseField name="CoworkerFullName" type="string">
  Display name of the linked coworker full (read-only).
</ResponseField>

<ResponseField name="CoworkerCompanyName" type="string">
  Display name of the linked coworker company (read-only).
</ResponseField>

<ResponseField name="CoworkerCoworkerType" type="string">
  The coworker coworker type value for this floor plan desk variant.
</ResponseField>

<ResponseField name="CoworkerEmail" type="string">
  The coworker email value for this floor plan desk variant.
</ResponseField>

<ResponseField name="CoworkerTeamNames" type="string">
  The coworker team names value for this floor plan desk variant.
</ResponseField>

<ResponseField name="Name" type="string">
  The name value for this floor plan desk variant.
</ResponseField>

<ResponseField name="Size" type="number">
  The size value for this floor plan desk variant.
</ResponseField>

<ResponseField name="Capacity" type="number">
  The capacity value for this floor plan desk variant.
</ResponseField>

<ResponseField name="Price" type="number">
  Unit price amount.
</ResponseField>

<ResponseField name="OccupancyPercentage" type="number">
  The occupancy percentage value for this floor plan desk variant.
</ResponseField>

<ResponseField name="Notes" type="string">
  Optional notes or comments about this floor plan desk variant.
</ResponseField>

<ResponseField name="AvailableMonday" type="boolean">
  Whether available monday is enabled.
</ResponseField>

<ResponseField name="AvailableTuesday" type="boolean">
  Whether available tuesday is enabled.
</ResponseField>

<ResponseField name="AvailableWednesday" type="boolean">
  Whether available wednesday is enabled.
</ResponseField>

<ResponseField name="AvailableThursday" type="boolean">
  Whether available thursday is enabled.
</ResponseField>

<ResponseField name="AvailableFriday" type="boolean">
  Whether available friday is enabled.
</ResponseField>

<ResponseField name="AvailableSaturday" type="boolean">
  Whether available saturday is enabled.
</ResponseField>

<ResponseField name="AvailableSunday" type="boolean">
  Whether available sunday is enabled.
</ResponseField>

<ResponseField name="AccessControlGroupId" type="string">
  ID of the access control group associated with this record.
</ResponseField>

<ResponseField name="CoworkerContractIds" type="string">
  The coworker contract ids value for this floor plan desk variant.
</ResponseField>

<ResponseField name="CoworkerContractFullNames" type="string">
  The coworker contract full names value for this floor plan desk variant.
</ResponseField>

<ResponseField name="CoworkerContractStartDates" type="string">
  The coworker contract start dates value for this floor plan desk variant.
</ResponseField>

<ResponseField name="AvailableFromTime" type="string">
  Date/time value for available from time.
</ResponseField>

<ResponseField name="AvailableToTime" type="string">
  Date/time value for available to time.
</ResponseField>

<ResponseField name="AvailableFromTimeLocal" type="string">
  Date/time value for available from time local.
</ResponseField>

<ResponseField name="AvailableToTimeLocal" type="string">
  Date/time value for available to time local.
</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}
{
  "FloorPlanDeskId": 0,
  "FloorPlanDeskName": null,
  "FloorPlanDeskPrice": null,
  "FloorPlanDeskFloorPlanId": null,
  "FloorPlanDeskFloorPlanName": null,
  "FloorPlanDeskFloorPlanBusinessId": null,
  "FloorPlanDeskFloorPlanBusinessName": null,
  "FloorPlanDeskFloorPlanBusinessCurrencyCode": null,
  "CoworkerId": null,
  "CoworkerFullName": null,
  "CoworkerCompanyName": null,
  "CoworkerCoworkerType": null,
  "CoworkerEmail": null,
  "CoworkerTeamNames": null,
  "Name": "",
  "Size": null,
  "Capacity": null,
  "Price": null,
  "OccupancyPercentage": 0,
  "Notes": null,
  "AvailableMonday": false,
  "AvailableTuesday": false,
  "AvailableWednesday": false,
  "AvailableThursday": false,
  "AvailableFriday": false,
  "AvailableSaturday": false,
  "AvailableSunday": false,
  "AccessControlGroupId": null,
  "CoworkerContractIds": null,
  "CoworkerContractFullNames": null,
  "CoworkerContractStartDates": null,
  "AvailableFromTime": null,
  "AvailableToTime": null,
  "AvailableFromTimeLocal": null,
  "AvailableToTimeLocal": null,
  "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": "FloorPlanDeskVariant Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
