Skip to main content

Delete Permission

This API deletes an existing permission set identified by its unique ID. Once deleted, the permission set can no longer be used within the system.

Endpoint Details

URL/v1/auth/permissions/id
MethodDELETE
AuthorizationBearer Token

Request Headers

HeaderTypeDescription
Content-TypeStringMust be application/json

Request Path

To delete a specific permission set, use the following request format:

/v1/auth/permissions/c8e49db8-f776-40b7-963f-7420e0a7b61a

Path Parameter

ParameterTypeDescription
idUUIDUnique identifier of the permission set to delete

Response

Here is an example response after the request has been successfully processed:

Response
{
"success": true
}

Field Descriptions

FieldTypeDescription
successBooleanIndicates whether the permission set was successfully deleted

info
  • A valid Bearer Token is required to access this endpoint.
  • The id path parameter must reference an existing permission set.
  • Deleting a permission set is permanent and cannot be undone.