Skip to main content

Read Users Me Workspace Permissions

GET 

/api/v1/me/workspaces/:workspace_name/permissions

Returns the permissions for the current user on the specified workspace.

It is a list of Permission objects, where each Permission has:

  • "asset" is the type of the asset the user has permissions to.
  • "action" is the action the user can perform on the asset.

Example:

 for an admin: [{"asset": "pipelines", "action": "write"}]
for a search_user: [{"asset": "pipelines", "action": "read"}, ...]

Request

Responses

Successful Response