---
title: "Get Current User Permissions"
method: GET
path: "/users/me/permissions"
tags: ["User"]
---

# Get Current User Permissions

`GET /users/me/permissions`

Returns the current authenticated user's permissions organized by tenant and resource. Response format: {"tenant-id": {"resource-name": ["action1", "action2"]}}

## Headers

- `tenant-id` string

## Response `200`

User permissions retrieved successfully. Returns a map where keys are tenant IDs and values are resource permission maps.

- object — Map of tenant IDs to resource permission maps. Example shape: ```json { "tenant-123-mock": { "roster": ["read", "create", "update"], "role": ["read"], ... }, "tenant-456-mock": { ... }, ... } ```

## Other responses

- `401` — Authentication required - Valid authentication token is missing or invalid
- `403` — Forbidden - User does not have the required permissions to view permissions
- `500` — Internal server error - An unexpected error occurred while processing the request

---

[API](https://skmtc.net/certifyos/apis/certify-api-layer.md) · [All operations](https://skmtc.net/certifyos/apis/certify-api-layer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/certifyos/certify-api-layer/revisions/3d27e9019c7b/schema)
