Skip to main content
GET
/
api
/
Permission
Get Permissions for the current user
curl --request GET \
  --url https://api.virtuoussoftware.com/api/Permission \
  --header 'Authorization: Bearer <token>'
[
  {
    "module": "Campaign",
    "action": "Delete",
    "allowed": false
  },
  {
    "module": "Campaign",
    "action": "Read",
    "allowed": true
  },
  {
    "module": "Campaign",
    "action": "Write",
    "allowed": true
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

module
string
action
string
allowed
boolean
Last modified on June 5, 2026