---
title: "List availabilities"
method: GET
path: "/users/{user_id}/availabilities"
tags: ["availabilities"]
---

# List availabilities

`GET /users/{user_id}/availabilities`

Retrieves a paginated list of availability time blocks for a specific user.

## Path parameters

- `user_id` integer, required

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

A paginated list of availability blocks for the user.

- AvailabilitiesResponse
  - `paging` PagingMetadata
    - `per_page` integer — The maximum number of items to show per response page.
    - `page` integer — The current response page number.
    - `previous` string, nullable — If you're on the first page, this value is `null`; otherwise the value is the path and query parameters to get the previous page of items.
    - `self` string — The path and query parameters to get the current page of items.
    - `next` string, nullable — If there are more items, this value is the path and query parameters to get the next page of items; otherwise, it's `null`.
    - `count` integer, nullable — The total number of items in all the pages.
  - `data` Availability[]
    - `id` integer, required — The unique identifier for the availability block.
    - `user_id` integer, required — The ID of the user this availability block belongs to.
    - `day0` number, required — Available hours on Sunday.
    - `day1` number, required — Available hours on Monday.
    - `day2` number, required — Available hours on Tuesday.
    - `day3` number, required — Available hours on Wednesday.
    - `day4` number, required — Available hours on Thursday.
    - `day5` number, required — Available hours on Friday.
    - `day6` number, required — Available hours on Saturday.
    - `starts_at` string, date, nullable, required — The effective start date for the availability block. Null implies the past.
    - `ends_at` string, date, nullable, required — The effective end date for the availability block. Null implies the future.
    - `created_at` string, date-time — The time of creation.
    - `updated_at` string, date-time — The time of the last update.

## Other responses

- `404` — The user ID was not found.

---

[API](https://skmtc.net/smartsheet/apis/resource-management-openapi-reference.md) · [All operations](https://skmtc.net/smartsheet/apis/resource-management-openapi-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smartsheet/resource-management-openapi-reference/versions/e4c439ac13f2/schema)
