
$role_to_add = new Jasper\Role('ROLE_VICE_PRINCIPAL', 'organization_1');

try {
   $client->putRole($role_to_add);
} catch (Exception $e) {
   printf('Adding role failed: %s', $e->getMessage());
}
