---
title: "List extended access of a user"
method: GET
path: "/users/{user_id}/extended-access"
tags: ["Grants"]
---

# List extended access of a user

`GET /users/{user_id}/extended-access`

List extended access of the given user, which includes both individual and team access to project and organization.

## Path parameters

- `user_id` string, uuid, required

## Query parameters

- `filter[resource_type]` StringFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `in` string — In (comma-separated list)
  - `nin` string — Not in (comma-separated list)
  - `between` string — Between (comma-separated list)
  - `contains` string — Contains
  - `starts` string — Starts with
  - `ends` string — Ends with
- `filter[organization_id]` StringFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `in` string — In (comma-separated list)
  - `nin` string — Not in (comma-separated list)
  - `between` string — Between (comma-separated list)
  - `contains` string — Contains
  - `starts` string — Starts with
  - `ends` string — Ends with
- `filter[permissions]` StringFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `in` string — In (comma-separated list)
  - `nin` string — Not in (comma-separated list)
  - `between` string — Between (comma-separated list)
  - `contains` string — Contains
  - `starts` string — Starts with
  - `ends` string — Ends with

## Response `200`

OK

- object
  - `items` object[]
    - `user_id` string, uuid — The ID of the user.
    - `resource_id` string — The ID of the resource.
    - `resource_type` 'project' | 'organization' — The type of the resource access to which is granted.
    - `organization_id` string — The ID of the organization owning the resource.
    - `permissions` string[] — List of project permissions.
    - `granted_at` string, date-time — The date and time when the access was granted.
    - `updated_at` string, date-time — The date and time when the access was updated.
  - `_links` ListLinks
    - `self` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `previous` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `next` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link

## Other responses

- `403` — Forbidden

---

[API](https://skmtc.net/upsun/apis/upsun-com-rest-api.md) · [All operations](https://skmtc.net/upsun/apis/upsun-com-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/upsun/upsun-com-rest-api/revisions/6cc88fde6435/schema)
