
$role_vice_principal = $client->getRoles('ROLE_VICE_PRINCIPAL', 'organization_1');

try {
   $client->deleteRole($role_vice_principal);
} catch (Exception $e) {
   printf('Deleting role failed: %s', $e->getMessage());
}
