Skip to main content
GET
/
api
/
sys
/
floorplandeskvariants
/
{id}
{
  "FloorPlanDeskId": 123,
  "FloorPlanDeskName": "<string>",
  "FloorPlanDeskPrice": 123,
  "FloorPlanDeskFloorPlanId": 123,
  "FloorPlanDeskFloorPlanName": "<string>",
  "FloorPlanDeskFloorPlanBusinessId": 123,
  "FloorPlanDeskFloorPlanBusinessName": "<string>",
  "FloorPlanDeskFloorPlanBusinessCurrencyCode": "<string>",
  "CoworkerId": 123,
  "CoworkerFullName": "<string>",
  "CoworkerCompanyName": "<string>",
  "CoworkerCoworkerType": "<string>",
  "CoworkerEmail": "<string>",
  "CoworkerTeamNames": "<string>",
  "Name": "<string>",
  "Size": 123,
  "Capacity": 123,
  "Price": 123,
  "OccupancyPercentage": 123,
  "Notes": "<string>",
  "AvailableMonday": true,
  "AvailableTuesday": true,
  "AvailableWednesday": true,
  "AvailableThursday": true,
  "AvailableFriday": true,
  "AvailableSaturday": true,
  "AvailableSunday": true,
  "AccessControlGroupId": "<string>",
  "CoworkerContractIds": "<string>",
  "CoworkerContractFullNames": "<string>",
  "CoworkerContractStartDates": "<string>",
  "AvailableFromTime": "<string>",
  "AvailableToTime": "<string>",
  "AvailableFromTimeLocal": "<string>",
  "AvailableToTimeLocal": "<string>",
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}

Authentication

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.

Path Parameters

id
integer
required
The Id of the FloorPlanDeskVariant record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/sys/floorplandeskvariants/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

FloorPlanDeskId
integer
Floor Plan Desk Id.
FloorPlanDeskName
string
Floor Plan Desk Name.
FloorPlanDeskPrice
number
Floor Plan Desk Price.
FloorPlanDeskFloorPlanId
integer
Floor Plan Desk Floor Plan Id.
FloorPlanDeskFloorPlanName
string
Floor Plan Desk Floor Plan Name.
FloorPlanDeskFloorPlanBusinessId
integer
Floor Plan Desk Floor Plan Business Id.
FloorPlanDeskFloorPlanBusinessName
string
Floor Plan Desk Floor Plan Business Name.
FloorPlanDeskFloorPlanBusinessCurrencyCode
string
Floor Plan Desk Floor Plan Business Currency Code.
CoworkerId
integer
Coworker Id.
CoworkerFullName
string
Coworker Full Name.
CoworkerCompanyName
string
Coworker Company Name.
CoworkerCoworkerType
string
Coworker Coworker Type.
CoworkerEmail
string
Coworker Email.
CoworkerTeamNames
string
Coworker Team Names.
Name
string
Name.
Size
number
Size.
Capacity
number
Capacity.
Price
number
Price.
OccupancyPercentage
number
Occupancy Percentage.
Notes
string
Notes.
AvailableMonday
boolean
Available Monday.
AvailableTuesday
boolean
Available Tuesday.
AvailableWednesday
boolean
Available Wednesday.
AvailableThursday
boolean
Available Thursday.
AvailableFriday
boolean
Available Friday.
AvailableSaturday
boolean
Available Saturday.
AvailableSunday
boolean
Available Sunday.
AccessControlGroupId
string
Access Control Group Id.
CoworkerContractIds
string
Coworker Contract Ids.
CoworkerContractFullNames
string
Coworker Contract Full Names.
CoworkerContractStartDates
string
Coworker Contract Start Dates.
AvailableFromTime
string
Available From Time.
AvailableToTime
string
Available To Time.
AvailableFromTimeLocal
string
Available From Time Local.
AvailableToTimeLocal
string
Available To Time Local.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "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
}