# Update permission Update an existing permission. Provide the permission ID as a path parameter to specify which permission to update, and send the updated permission information in the request body. This route does not update role associations for the permission. Use the associate permission to roles route to manage role associations. Endpoint: PATCH /resources/permissions/v1/{permissionId} Security: bearer ## Path parameters: - `permissionId` (string, required) ## Request fields (application/json): - `key` (string) - `name` (string) - `description` (string) - `categoryId` (string) ## Response 200 fields (application/json): - `id` (string, required) - `key` (string, required) - `name` (string, required) - `description` (string, required) - `createdAt` (string, required) - `updatedAt` (string, required) - `roleIds` (array, required) - `categoryId` (string, required) - `fePermission` (boolean, required)