Get categories permissions

This endpoint returns the categories permissions of audit trail events for the current user. Fetching forbidden categories in other endpoints will end up in a 403 Forbidden response.

Get Categories Permissions

This operation returns the categories permissions of audit trail events.

GETyouraudittrailURL.symphony.com/at2/v1/categories/permissions
Response

Success

Body
allowednullable array of string

Only present if there are allowed categories

forbiddennullable array of string

Only present if there are forbidden categories

Request
const response = await fetch('youraudittrailURL.symphony.com/at2/v1/categories/permissions', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "allowed": [
    "allowed",
    "allowed"
  ],
  "forbidden": [
    "forbidden",
    "forbidden"
  ]
}

Last updated