Create a queue for order issues

  • Release version: Australia
  • Updated March 12, 2026
  • 1 minute to read
  • Create a queue for the Chat service channel that routes order issues.

    Before you begin

    Role required: awa_admin or admin

    Procedure

    1. From the Queues list view, click New.
    2. Enter the following information in the fields listed:
      • Name: Order Support
      • Service channel: Chat
      • Condition mode: Advanced
    3. In the Script field, enter this script:
      (function executeCondition(/* glide record */ current) {  
      	var contextTable = current.getValue('context_table');
      	var interactionBlobRecord = new GlideRecord(contextTable);
      	interactionBlobRecord.addQuery('sys_id',current.getValue('context_document'));
      	interactionBlobRecord.query();
      
      	if(interactionBlobRecord.next()){
      		var jsonBlob = JSON.parse(interactionBlobRecord.getValue('value'));
      		if(jsonBlob.liveagent_csp_category == 'order')
      			return true;
      	}
      	return false;
      })(current);
    4. Click Submit.