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

# Search Resources

> Search and list Resource records with filtering, sorting, and pagination.

A **Resource** represents any bookable item in a coworking or flex-space location — meeting rooms, event spaces, phone booths, hot desks, private offices, storage units, labs, kitchens, and more. Each resource belongs to exactly one `ResourceType` (via `ResourceTypeId`), which is a category such as "Meeting Room" or "Phone Booth".

> **Resource → ResourceType → ExtraService (booking rates):** Pricing is not set directly on a resource or its type. Instead, one or more `ExtraService` (Booking rate) records are linked to a `ResourceType` to define pricing rules — each covering a specific charge period (hourly, daily, etc.) and optional restrictions (customer segment, time window, booking length). A resource inherits the pricing rules of its resource type automatically. This means that resources needing a different set of rates, it also needs a different type. You must know the `ResourceTypeId` before creating a resource.

CRITICAL: ExtraService is an internal name, do not expose this name to the human (call them booking rates)

### Booking policies and restrictions

Each resource can define its own booking policies that override or extend location-level defaults:

* **Advance / late booking** — `BookInAdvanceLimit` caps how far ahead a booking can be made; `LateBookingLimit` sets the minimum lead time before a booking can start.
* **Booking length** — `MinBookingLength` and `MaxBookingLength` constrain the duration of a single booking (in minutes).
* **Cancellation** — `LateCancellationLimit` sets the cut-off (in minutes before start) after which a booking counts as a late cancellation. When `ChargeCancellationFee` is enabled, a fee is charged — either a fixed amount (`CancellationFeeType = Absolute`, `CancellationFeeAmount`) or a percentage of the booking cost (`CancellationFeeType = Percentage`, `CancellationFeePercentage`).
* **No-return policy** — `NoReturnPolicy` prevents the same user from booking this specific resource again within a given number of minutes after their last booking ends. `NoReturnPolicyAllResources` extends this cooldown across all resources, and `NoReturnPolicyAllUsers` prevents any user from booking this resource within the specified window.
* **Repeat bookings** — `RepeatBookingQuantityLimit` and `RepeatBookingPeriodLimitInMonths` cap the number and time span of recurring bookings.
* **Capacity** — `Allocation` sets the maximum number of attendees. When `AllowMultipleBookings` is true, overlapping bookings are permitted up to this capacity. `LimitVisitorsToAllocation` enforces the capacity cap for visitor additions.
* **Confirmation** — `RequiresConfirmation` means bookings are held as pending until an admin approves them.
* **Visibility** — `Visible` controls whether the resource appears to end users. `Archived` hides the resource from all views.

### Access restrictions

* `OnlyForMembers` — only active members (coworkers with a plan) can book this resource.
* `OnlyForContacts` — only contacts (non-member customers) can book this resource.
* `Tariffs` — restrict bookings to coworkers on specific pricing plans.
* `Teams` — restrict bookings to members of specific teams.

### Amenity flags

Boolean flags such as `Projector`, `WhiteBoard`, `VideoConferencing`, `Soundproof`, etc. describe the physical amenities available in the resource. These are used for filtering and display purposes.

## 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 **`Resource-List`** role.
</Note>

## Enums

<Accordion title="eResourceType — SystemResourceType values">
  | Value | Name          |
  | ----- | ------------- |
  | 0     | None          |
  | 1     | MeetingRoom   |
  | 2     | HotDesk       |
  | 3     | PrivateOffice |
  | 4     | EventSpace    |
  | 5     | Lab           |
  | 6     | Kitchen       |
  | 7     | TreatmentRoom |
  | 9     | StorageUnit   |
  | 10    | Machine       |
  | 11    | DayPass       |
  | 12    | PhoneBooth    |
  | 99    | Other         |
</Accordion>

<Accordion title="eCancellationFeeType — CancellationFeeType values">
  | Value | Name       |
  | ----- | ---------- |
  | 0     | None       |
  | 1     | Absolute   |
  | 2     | Percentage |
</Accordion>

## Query Parameters

### Pagination & Sorting

<ParamField query="page" type="integer" default="1">
  The page number to retrieve.
</ParamField>

<ParamField query="size" type="integer" default="25">
  The number of records per page.
</ParamField>

<ParamField query="orderBy" type="string">
  The property name to sort results by (e.g. `Name`, `CreatedOn`).
</ParamField>

<ParamField query="dir" type="integer">
  Sort direction. `0` for ascending, `1` for descending.
</ParamField>

### Filters

<ParamField query="Resource_Business" type="integer">
  Filter by Business Id.
</ParamField>

<ParamField query="Resource_Business_Name" type="string">
  Filter by name of the location (read-only, resolved from BusinessId)..
</ParamField>

<ParamField query="Resource_Name" type="string">
  Filter by display name of the resource (e.g., 'Board Room A', 'Phone Booth 3')..
</ParamField>

<ParamField query="Resource_SystemResourceType" type="integer">
  Filter by built-in resource category used for system behaviour (e.g., MeetingRoom, HotDesk, PhoneBooth). Distinct from the custom ResourceType..
</ParamField>

<ParamField query="Resource_ResourceType" type="integer">
  Filter by Resource Type Id.
</ParamField>

<ParamField query="Resource_ResourceType_Name" type="string">
  Filter by name of the resource type (read-only, resolved from ResourceTypeId)..
</ParamField>

<ParamField query="Resource_Description" type="string">
  Filter by free-text description shown to users when viewing the resource details..
</ParamField>

<ParamField query="Resource_PictureFileName" type="string">
  Filter by Picture File Name.
</ParamField>

<ParamField query="Resource_NewPictureUrl" type="string">
  Filter by New Picture Url.
</ParamField>

<ParamField query="Resource_ClearPicture" type="boolean">
  Filter by Clear Picture File.
</ParamField>

<ParamField query="Resource_EmailConfirmationContent" type="string">
  Filter by custom HTML or text included in booking confirmation emails for this resource..
</ParamField>

<ParamField query="Resource_Visible" type="boolean">
  Filter by whether the resource is visible and bookable by end users. Hidden resources can still be booked by admins..
</ParamField>

<ParamField query="Resource_RequiresConfirmation" type="boolean">
  Filter by when true, bookings for this resource are held as pending until an admin approves them..
</ParamField>

<ParamField query="Resource_DisplayOrder" type="integer">
  Filter by sort position when listing resources. Lower values appear first..
</ParamField>

<ParamField query="Resource_GroupName" type="string">
  Filter by optional grouping label used to cluster related resources together in the UI (e.g., 'Floor 2')..
</ParamField>

<ParamField query="Resource_Projector" type="boolean">
  Filter by amenity flag: resource has a projector..
</ParamField>

<ParamField query="Resource_Internet" type="boolean">
  Filter by amenity flag: resource has internet access..
</ParamField>

<ParamField query="Resource_ConferencePhone" type="boolean">
  Filter by amenity flag: resource has a conference phone..
</ParamField>

<ParamField query="Resource_StandardPhone" type="boolean">
  Filter by amenity flag: resource has a standard phone..
</ParamField>

<ParamField query="Resource_WhiteBoard" type="boolean">
  Filter by amenity flag: resource has a whiteboard..
</ParamField>

<ParamField query="Resource_LargeDisplay" type="boolean">
  Filter by amenity flag: resource has a large display..
</ParamField>

<ParamField query="Resource_Catering" type="boolean">
  Filter by amenity flag: catering is available for this resource..
</ParamField>

<ParamField query="Resource_TeaAndCoffee" type="boolean">
  Filter by amenity flag: tea and coffee are available..
</ParamField>

<ParamField query="Resource_Drinks" type="boolean">
  Filter by amenity flag: drinks are available..
</ParamField>

<ParamField query="Resource_SecurityLock" type="boolean">
  Filter by amenity flag: resource has a security lock..
</ParamField>

<ParamField query="Resource_CCTV" type="boolean">
  Filter by amenity flag: resource has CCTV coverage..
</ParamField>

<ParamField query="Resource_VoiceRecorder" type="boolean">
  Filter by amenity flag: resource has a voice recorder..
</ParamField>

<ParamField query="Resource_AirConditioning" type="boolean">
  Filter by amenity flag: resource has air conditioning..
</ParamField>

<ParamField query="Resource_Heating" type="boolean">
  Filter by amenity flag: resource has heating..
</ParamField>

<ParamField query="Resource_NaturalLight" type="boolean">
  Filter by amenity flag: resource has natural light..
</ParamField>

<ParamField query="Resource_StandingDesk" type="boolean">
  Filter by amenity flag: resource has a standing desk..
</ParamField>

<ParamField query="Resource_QuietZone" type="boolean">
  Filter by amenity flag: resource is located in a quiet zone..
</ParamField>

<ParamField query="Resource_WirelessCharger" type="boolean">
  Filter by amenity flag: resource has a wireless charger..
</ParamField>

<ParamField query="Resource_PrivacyScreen" type="boolean">
  Filter by amenity flag: resource has a privacy screen..
</ParamField>

<ParamField query="Resource_Soundproof" type="boolean">
  Filter by amenity flag: resource is soundproof..
</ParamField>

<ParamField query="Resource_VideoConferencing" type="boolean">
  Filter by amenity flag: resource has video conferencing equipment..
</ParamField>

<ParamField query="Resource_DualDisplayScreen" type="boolean">
  Filter by amenity flag: resource has a dual display screen..
</ParamField>

<ParamField query="Resource_DisplayScreen" type="boolean">
  Filter by amenity flag: resource has a display screen..
</ParamField>

<ParamField query="Resource_WirelessPresentation" type="boolean">
  Filter by amenity flag: resource has wireless presentation capabilities..
</ParamField>

<ParamField query="Resource_PaSystem" type="boolean">
  Filter by amenity flag: resource has a PA system..
</ParamField>

<ParamField query="Resource_DesktopMonitor" type="boolean">
  Filter by amenity flag: resource has a desktop monitor..
</ParamField>

<ParamField query="Resource_FlipChart" type="boolean">
  Filter by amenity flag: resource has a flip chart..
</ParamField>

<ParamField query="Resource_SecureStorage" type="boolean">
  Filter by amenity flag: resource has secure storage..
</ParamField>

<ParamField query="Resource_AllowMultipleBookings" type="boolean">
  Filter by when true, overlapping bookings are permitted up to the Allocation capacity..
</ParamField>

<ParamField query="Resource_Allocation" type="integer">
  Filter by maximum number of attendees or concurrent bookings allowed. Used with AllowMultipleBookings to control capacity..
</ParamField>

<ParamField query="Resource_LimitVisitorsToAllocation" type="boolean">
  Filter by when true, the total number of visitors added to a booking cannot exceed the Allocation capacity..
</ParamField>

<ParamField query="Resource_BookInAdvanceLimit" type="number">
  Filter by maximum number of days in advance a booking can be made for this resource. Null means no limit..
</ParamField>

<ParamField query="Resource_LateBookingLimit" type="number">
  Filter by minimum lead time (in minutes) required before a booking can start. Prevents last-minute bookings..
</ParamField>

<ParamField query="Resource_LateCancellationLimit" type="integer">
  Filter by cut-off in minutes before the booking start time. Cancellations after this point are considered late and may incur a fee..
</ParamField>

<ParamField query="Resource_IntervalLimit" type="integer">
  Filter by minimum interval (in minutes) between consecutive bookings on this resource, used as a buffer for setup or cleaning..
</ParamField>

<ParamField query="Resource_NoReturnPolicy" type="integer">
  Filter by cooldown in minutes: prevents the same user from booking this specific resource again within this window after their last booking ends..
</ParamField>

<ParamField query="Resource_NoReturnPolicyAllResources" type="integer">
  Filter by cooldown in minutes: prevents the same user from booking any resource after booking this one, for the specified window\..
</ParamField>

<ParamField query="Resource_NoReturnPolicyAllUsers" type="integer">
  Filter by cooldown in minutes: prevents any user from booking this resource within the specified window after the previous booking ends..
</ParamField>

<ParamField query="Resource_MaxBookingLength" type="integer">
  Filter by maximum allowed duration for a single booking on this resource, in minutes..
</ParamField>

<ParamField query="Resource_MinBookingLength" type="integer">
  Filter by minimum allowed duration for a single booking on this resource, in minutes..
</ParamField>

<ParamField query="Resource_Shifts" type="string">
  Filter by jSON-encoded shifts configuration defining the resource's availability schedule..
</ParamField>

<ParamField query="Resource_GoogleCalendarId" type="string">
  Filter by Google Calendar Id.
</ParamField>

<ParamField query="Resource_KisiGroupId" type="string">
  Filter by Kisi Group Id.
</ParamField>

<ParamField query="Resource_AccessControlGroupId" type="string">
  Filter by Access Control Group Id.
</ParamField>

<ParamField query="Resource_AccessControlGroupIds" type="string">
  Filter by Access Control Group Ids.
</ParamField>

<ParamField query="Resource_Longitude" type="number">
  Filter by gPS longitude coordinate of the resource's physical location..
</ParamField>

<ParamField query="Resource_Latitude" type="number">
  Filter by gPS latitude coordinate of the resource's physical location..
</ParamField>

<ParamField query="Resource_HideInCalendar" type="boolean">
  Filter by when true, this resource does not appear on the booking calendar view\..
</ParamField>

<ParamField query="Resource_Archived" type="boolean">
  Filter by when true, the resource is archived and hidden from all views. It cannot be booked..
</ParamField>

<ParamField query="Resource_UseSharedZoomAccount" type="boolean">
  Filter by when true, bookings for this resource use the location's shared Zoom account to create virtual meetings..
</ParamField>

<ParamField query="Resource_ZoomAccessToken" type="string">
  Filter by Zoom Access Token.
</ParamField>

<ParamField query="Resource_ZoomRefreshToken" type="string">
  Filter by Zoom Refresh Token.
</ParamField>

<ParamField query="Resource_ZoomUserId" type="string">
  Filter by zoom user ID used to host virtual meetings when UseSharedZoomAccount is false..
</ParamField>

<ParamField query="Resource_LastCleanedAt" type="string">
  Filter by timestamp of the last cleaning event for this resource..
</ParamField>

<ParamField query="Resource_Office365CalendarId" type="string">
  Filter by Office365Calendar Id.
</ParamField>

<ParamField query="Resource_LinkedResourceIds" type="string">
  Filter by comma-separated string of linked resource IDs (read-only alternative view of LinkedResources)..
</ParamField>

<ParamField query="Resource_OnlyForContacts" type="boolean">
  Filter by when true, only contacts (non-member customers) can book this resource..
</ParamField>

<ParamField query="Resource_OnlyForMembers" type="boolean">
  Filter by when true, only active members (coworkers with a plan) can book this resource..
</ParamField>

<ParamField query="Resource_OnlyForInvoicingBusiness" type="boolean">
  Filter by when true, only coworkers invoiced by this specific location can book this resource..
</ParamField>

<ParamField query="Resource_SensorLastValue" type="string">
  Filter by last value reported by an IoT occupancy sensor attached to this resource (read-only)..
</ParamField>

<ParamField query="Resource_IsSensorOccupied" type="boolean">
  Filter by whether the IoT sensor currently reports this resource as occupied (read-only)..
</ParamField>

<ParamField query="Resource_CancellationFeeProduct" type="integer">
  Filter by Cancellation Fee Product Id.
</ParamField>

<ParamField query="Resource_CancellationFeeProduct_Name" type="string">
  Filter by name of the cancellation fee product (read-only, resolved from CancellationFeeProductId)..
</ParamField>

<ParamField query="Resource_ChargeCancellationFee" type="boolean">
  Filter by when true, a fee is charged for late cancellations (past the LateCancellationLimit)..
</ParamField>

<ParamField query="Resource_CancellationFeeType" type="integer">
  Filter by how the cancellation fee is calculated: Absolute (fixed amount) or Percentage (of booking cost)..
</ParamField>

<ParamField query="Resource_CancellationFeeAmount" type="number">
  Filter by fixed cancellation fee amount. Used when CancellationFeeType is Absolute..
</ParamField>

<ParamField query="Resource_CancellationFeePercentage" type="number">
  Filter by cancellation fee as a percentage of the booking cost. Used when CancellationFeeType is Percentage..
</ParamField>

<ParamField query="Resource_RepeatBookingQuantityLimit" type="integer">
  Filter by maximum number of occurrences allowed when creating a recurring booking for this resource..
</ParamField>

<ParamField query="Resource_RepeatBookingPeriodLimitInMonths" type="integer">
  Filter by maximum time span (in months) over which a recurring booking series can extend..
</ParamField>

### Range Filters

<ParamField query="from_Resource_DisplayOrder" type="integer">
  Filter by sort position when listing resources. Lower values appear first. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_DisplayOrder" type="integer">
  Filter by sort position when listing resources. Lower values appear first. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_Allocation" type="integer">
  Filter by maximum number of attendees or concurrent bookings allowed. Used with AllowMultipleBookings to control capacity. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_Allocation" type="integer">
  Filter by maximum number of attendees or concurrent bookings allowed. Used with AllowMultipleBookings to control capacity. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_BookInAdvanceLimit" type="number">
  Filter by maximum number of days in advance a booking can be made for this resource. Null means no limit. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_BookInAdvanceLimit" type="number">
  Filter by maximum number of days in advance a booking can be made for this resource. Null means no limit. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_LateBookingLimit" type="number">
  Filter by minimum lead time (in minutes) required before a booking can start. Prevents last-minute bookings. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_LateBookingLimit" type="number">
  Filter by minimum lead time (in minutes) required before a booking can start. Prevents last-minute bookings. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_LateCancellationLimit" type="integer">
  Filter by cut-off in minutes before the booking start time. Cancellations after this point are considered late and may incur a fee. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_LateCancellationLimit" type="integer">
  Filter by cut-off in minutes before the booking start time. Cancellations after this point are considered late and may incur a fee. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_IntervalLimit" type="integer">
  Filter by minimum interval (in minutes) between consecutive bookings on this resource, used as a buffer for setup or cleaning. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_IntervalLimit" type="integer">
  Filter by minimum interval (in minutes) between consecutive bookings on this resource, used as a buffer for setup or cleaning. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_NoReturnPolicy" type="integer">
  Filter by cooldown in minutes: prevents the same user from booking this specific resource again within this window after their last booking ends. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_NoReturnPolicy" type="integer">
  Filter by cooldown in minutes: prevents the same user from booking this specific resource again within this window after their last booking ends. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_NoReturnPolicyAllResources" type="integer">
  Filter by cooldown in minutes: prevents the same user from booking any resource after booking this one, for the specified window. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_NoReturnPolicyAllResources" type="integer">
  Filter by cooldown in minutes: prevents the same user from booking any resource after booking this one, for the specified window. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_NoReturnPolicyAllUsers" type="integer">
  Filter by cooldown in minutes: prevents any user from booking this resource within the specified window after the previous booking ends. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_NoReturnPolicyAllUsers" type="integer">
  Filter by cooldown in minutes: prevents any user from booking this resource within the specified window after the previous booking ends. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_MaxBookingLength" type="integer">
  Filter by maximum allowed duration for a single booking on this resource, in minutes. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_MaxBookingLength" type="integer">
  Filter by maximum allowed duration for a single booking on this resource, in minutes. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_MinBookingLength" type="integer">
  Filter by minimum allowed duration for a single booking on this resource, in minutes. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_MinBookingLength" type="integer">
  Filter by minimum allowed duration for a single booking on this resource, in minutes. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_Longitude" type="number">
  Filter by gPS longitude coordinate of the resource's physical location. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_Longitude" type="number">
  Filter by gPS longitude coordinate of the resource's physical location. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_Latitude" type="number">
  Filter by gPS latitude coordinate of the resource's physical location. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_Latitude" type="number">
  Filter by gPS latitude coordinate of the resource's physical location. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_LastCleanedAt" type="string">
  Filter by timestamp of the last cleaning event for this resource. greater than or equal to this value. Format: `YYYY-MM-DDTHH:mm`.
</ParamField>

<ParamField query="to_Resource_LastCleanedAt" type="string">
  Filter by timestamp of the last cleaning event for this resource. less than or equal to this value. Format: `YYYY-MM-DDTHH:mm`.
</ParamField>

<ParamField query="from_Resource_CancellationFeeAmount" type="number">
  Filter by fixed cancellation fee amount. Used when CancellationFeeType is Absolute. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_CancellationFeeAmount" type="number">
  Filter by fixed cancellation fee amount. Used when CancellationFeeType is Absolute. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_CancellationFeePercentage" type="number">
  Filter by cancellation fee as a percentage of the booking cost. Used when CancellationFeeType is Percentage. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_CancellationFeePercentage" type="number">
  Filter by cancellation fee as a percentage of the booking cost. Used when CancellationFeeType is Percentage. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_RepeatBookingQuantityLimit" type="integer">
  Filter by maximum number of occurrences allowed when creating a recurring booking for this resource. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_RepeatBookingQuantityLimit" type="integer">
  Filter by maximum number of occurrences allowed when creating a recurring booking for this resource. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_RepeatBookingPeriodLimitInMonths" type="integer">
  Filter by maximum time span (in months) over which a recurring booking series can extend. greater than or equal to this value.
</ParamField>

<ParamField query="to_Resource_RepeatBookingPeriodLimitInMonths" type="integer">
  Filter by maximum time span (in months) over which a recurring booking series can extend. less than or equal to this value.
</ParamField>

<ParamField query="from_Resource_CreatedOn" type="string">
  Filter records created on or after this date. Format: `YYYY-MM-DDTHH:mm`.
</ParamField>

<ParamField query="to_Resource_CreatedOn" type="string">
  Filter records created on or before this date. Format: `YYYY-MM-DDTHH:mm`.
</ParamField>

<ParamField query="from_Resource_UpdatedOn" type="string">
  Filter records updated on or after this date. Format: `YYYY-MM-DDTHH:mm`.
</ParamField>

<ParamField query="to_Resource_UpdatedOn" type="string">
  Filter records updated on or before this date. Format: `YYYY-MM-DDTHH:mm`.
</ParamField>

## Code Examples

### Simple listing

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/spaces/resources?page=1&size=15&orderBy=Name&dir=0" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/spaces/resources?' + new URLSearchParams({
      page: 1,
      size: 15,
      orderBy: 'Name',
      dir: 1 // Ascending
    }),
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

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

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

  response = requests.get(
      'https://spaces.nexudus.com/api/spaces/resources',
      params={
          'page': 1,
          'size': 15,
          'orderBy': 'Name',
          'dir': 0 // Ascending
      },
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

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

### Filtering by Name

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/spaces/resources?Resource_Name=example-value&orderBy=Name&dir=0" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/spaces/resources?' + new URLSearchParams({
      Resource_Name: 'example-value',
      orderBy: 'Name',
      dir: 1
    }),
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

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

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

  response = requests.get(
      'https://spaces.nexudus.com/api/spaces/resources',
      params={
          'Resource_Name': 'example-value',
          'orderBy': 'Name',
          'dir': 0 // Ascending
      },
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

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

### Range filters

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/spaces/resources?from_Resource_UpdatedOn=2025-01-01T00:00&to_Resource_UpdatedOn=2025-12-31T23:59&orderBy=UpdatedOn&dir=0" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/spaces/resources?' + new URLSearchParams({
      from_Resource_UpdatedOn: '2025-01-01T00:00',
      to_Resource_UpdatedOn: '2025-12-31T23:59',
      orderBy: 'UpdatedOn',
      dir: 1 // Descending
     }),
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

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

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

  response = requests.get(
      'https://spaces.nexudus.com/api/spaces/resources',
      params={
          'from_Resource_UpdatedOn': '2025-01-01T00:00',
          'to_Resource_UpdatedOn': '2025-12-31T23:59',
          'orderBy': 'UpdatedOn',
          'dir': 1 // Descending
      },
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

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

## Response

### 200

<ResponseField name="Records" type="Resource[]">
  The list of Resource records matching the query. See the [Get one Resource](/rest-api/spaces/get-resources-by-id) endpoint for the full list of properties returned for each record.
</ResponseField>

<Warning>
  **Partial records** — The listing endpoint returns a summary representation of each Resource. The following fields are **not populated** in the `Records[]` response: `Description`, `EmailConfirmationContent`, `DisplayOrder`, `Projector`, `Internet`, `ConferencePhone`, `StandardPhone`, `WhiteBoard`, `LargeDisplay`, `Catering`, `TeaAndCoffee`, `Drinks`, `SecurityLock`, `CCTV`, `VoiceRecorder`, `AirConditioning`, `Heating`, `NaturalLight`, `StandingDesk`, `QuietZone`, `WirelessCharger`, `PrivacyScreen`, `Soundproof`, `VideoConferencing`, `DualDisplayScreen`, `DisplayScreen`, `WirelessPresentation`, `PaSystem`, `DesktopMonitor`, `FlipChart`, `SecureStorage`, `AllowMultipleBookings`, `Allocation`, `LimitVisitorsToAllocation`, `BookInAdvanceLimit`, `LateBookingLimit`, `LateCancellationLimit`, `IntervalLimit`, `NoReturnPolicy`, `NoReturnPolicyAllResources`, `NoReturnPolicyAllUsers`, `MaxBookingLength`, `MinBookingLength`, `Shifts`, `HideInCalendar`, `UseSharedZoomAccount`, `OnlyForContacts`, `OnlyForMembers`, `OnlyForInvoicingBusiness`, `ChargeCancellationFee`, `CancellationFeeType`, `CancellationFeeAmount`, `CancellationFeePercentage`, `RepeatBookingQuantityLimit`, `RepeatBookingPeriodLimitInMonths`.

  To get all fields, fetch the full record using the [Get one Resource](/rest-api/spaces/get-resources-by-id) endpoint.

  **Important for updates:** When updating a record via `PUT`, always retrieve the full record with a `GET` request first, apply your changes to that complete data, and then send the updated record. Do not use data from a listing response as the base for a `PUT` request, as missing fields may be unintentionally cleared.
</Warning>

<ResponseField name="CurrentPage" type="integer">
  Current page number.
</ResponseField>

<ResponseField name="CurrentPageSize" type="integer">
  Number of records per page.
</ResponseField>

<ResponseField name="CurrentOrderField" type="string">
  The field used for sorting.
</ResponseField>

<ResponseField name="CurrentSortDirection" type="integer">
  The sort direction (`0` = ascending, `1` = descending).
</ResponseField>

<ResponseField name="FirstItem" type="integer">
  Index of the first item on the current page.
</ResponseField>

<ResponseField name="LastItem" type="integer">
  Index of the last item on the current page.
</ResponseField>

<ResponseField name="TotalItems" type="integer">
  Total number of matching records across all pages.
</ResponseField>

<ResponseField name="TotalPages" type="integer">
  Total number of pages.
</ResponseField>

<ResponseField name="HasNextPage" type="boolean">
  Whether there is a next page of results.
</ResponseField>

<ResponseField name="HasPreviousPage" type="boolean">
  Whether there is a previous page of results.
</ResponseField>

```json Example Response theme={null}
{
  "Records": [
    {
      "BusinessId": 0,
      "BusinessName": null,
      "Name": "",
      "SystemResourceType": 0,
      "ResourceTypeId": 0,
      "ResourceTypeName": null,
      "PictureFileName": null,
      "NewPictureUrl": null,
      "ClearPictureFile": null,
      "Visible": false,
      "RequiresConfirmation": false,
      "GroupName": null,
      "Tariffs": [],
      "Teams": [],
      "LinkedResources": [],
      "GoogleCalendarId": null,
      "KisiGroupId": null,
      "AccessControlGroupId": null,
      "AccessControlGroupIds": null,
      "Longitude": null,
      "Latitude": null,
      "Archived": false,
      "ZoomAccessToken": null,
      "ZoomRefreshToken": null,
      "ZoomUserId": null,
      "LastCleanedAt": null,
      "Office365CalendarId": null,
      "LinkedResourceIds": null,
      "SensorLastValue": null,
      "IsSensorOccupied": false,
      "BookingAvailabilityExceptions": [],
      "CancellationFeeProductId": null,
      "CancellationFeeProductName": 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": "Resource Example",
      "LocalizationDetails": null,
      "CustomFields": null
    }
  ],
  "CurrentPageSize": 15,
  "CurrentPage": 1,
  "CurrentOrderField": "Name",
  "CurrentSortDirection": 1,
  "FirstItem": 1,
  "HasNextPage": false,
  "HasPreviousPage": false,
  "LastItem": 1,
  "PageNumber": 1,
  "PageSize": 15,
  "TotalItems": 1,
  "TotalPages": 1
}
```
