Skip to main content
GET
/
v1
/
permissions
Retrieve User Permission
curl --request GET \
  --url https://auth.sandbox.lerian.net/v1/permissions \
  --header 'Authorization: <authorization>'
{
  "accounts": [
    "get",
    "post",
    "patch",
    "delete"
  ],
  "applications": [
    "get",
    "post",
    "delete"
  ],
  "asset-rates": [
    "get",
    "patch"
  ],
  "assets": [
    "get",
    "post",
    "patch",
    "delete"
  ],
  "balances": [
    "get",
    "patch",
    "delete"
  ],
  "groups": [
    "get"
  ],
  "ledgers": [
    "get",
    "post",
    "patch",
    "delete"
  ],
  "operations": [
    "get",
    "patch"
  ],
  "organizations": [
    "get",
    "post",
    "patch",
    "delete"
  ],
  "portfolios": [
    "get",
    "post",
    "patch",
    "delete"
  ],
  "segments": [
    "get",
    "post",
    "patch",
    "delete"
  ],
  "transactions": [
    "get",
    "post",
    "patch"
  ],
  "users": [
    "get",
    "post",
    "patch",
    "delete"
  ],
  "users/password": [
    "patch"
  ]
}

Headers

Authorization
string
required

The authorization token in the 'Bearer <token>' format.

Response

Indicates that the resource was successfully created and the operation was completed as expected.

A list of APIs or resources the user can access, each paired with the allowed actions they can perform.

{key}
string[]