Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Restrict access

Service Catalog enables an administrator to grant or deny access to a service catalog item or category by company, department, group, user, or location.

Before you begin

Role required: admin

Procedure

  1. Navigate to All > Service Catalog > Maintain Items or Service Catalog > Maintain Categories.

  2. Open the relevant catalog item or category.

  3. Configure the form to add the appropriate Available or Not available lists.

Image omitted: AccessControl.png
access control
  1. Add the companies, departments, groups, users, or locations to the appropriate list.

  2. Click Update.

Parent Topic:Legacy service catalog access controls

Restrict access by role

By default, individual catalog items and categories do not have access restrictions.

Before you begin

Role required: admin

About this task

Administrators can grant or deny access to a service catalog item or category based on role.

Procedure

  1. Navigate to All > Service Catalog > Maintain Items or Service Catalog > Maintain Categories.

  2. Open the relevant catalog item or category.

  3. Add the required roles to the Roles field.

    You can, if needed, Configure the form or change to Default View to see the Roles field.

Image omitted: RolesGranted.png
roles granted

Restrict access by a script

Service Catalog enables you to control access to a service catalog item or category with a custom script.

Before you begin

Role required: admin

Procedure

  1. Navigate to All > Service Catalog > Maintain Items or Service Catalog > Maintain Categories.

  2. Open the relevant catalog item or category.

  3. Configure the form to add the Entitlement Script field.

Image omitted: EntitlementScript.png
entitlement script
  1. In the Entitlement Script field, enter the access control script.

    Sample Scripts:

    The following example script grants access to a catalog item named French Blackberry to users with a language of Fr (French):

    gs.log ( 'Running Entitlement script for French Blackberry' ) ;
    
     if (gs. getUser ( ). getLanguage ( ) == 'fr' ) 
        answer = true ; else 
        answer = false ;
    
    answer ;
    

    The following example script could be used to distinguish between two categories of users (one with full access and one with restricted access) on the catalog of services:

    var userid  = gs. getUserID ( ) ; var now_GR  = new GlideRecord ( 'sys_user' ) ; 
    now_GR. get ( 'sys_id' , userid ) ; 
    
     if (now_GR. source )
        answer = true ; else
        answer = false ; 
    
    answer ;
    

    Overriding Entitlement Scripts by Role

    1. Navigate to Service Catalog > Properties.
    2. Enter the roles for which to override the entitlement script (grant access) in the property List of roles (comma-separated) that can override normal entitlement checking inside the catalog. An itil role of "itil" means that the itil role can order any catalog item, even one protected by entitlement restrictions.