ARLAS Permissions APIs v26.0.0

Scroll down for example requests and responses.

Get a list of authorized endpoints/verbs for authenticated users.

Base URLs:

Email: Gisaia Web: Gisaia License: Apache 2.0

authorize

Permissions API

Returns a list of permissions for the current context/user

GET /authorize/resources

Returns a list of permissions for the current context/user

Parameters

Name In Type Required Description
filter query string true A regex to apply to permissions uris in order to filter the returned list.
pretty query boolean false Pretty print

Example responses

200 Response

[
  {
    "verb": "string",
    "path": "string"
  }
]

Responses

Status Meaning Description Schema
200 OK Successful operation Inline
500 Internal Server Error Arlas Permissions Error. Error

Response Schema

Status Code 200

Name Type Required Restrictions Description
anonymous [Resource] false none none
» verb string true none none
» path string true none none

Schemas

Resource

{
  "verb": "string",
  "path": "string"
}

Properties

Name Type Required Restrictions Description
verb string true none none
path string true none none

Error

{
  "status": 0,
  "message": "string",
  "error": "string"
}

Properties

Name Type Required Restrictions Description
status integer(int32) false none none
message string false none none
error string false none none