@servicenow/sdk - v4.9.0
    Preparing search index...
    • Creates a Connection & Credential Alias (sys_alias) record.

      Aliases provide a way to define connections and credentials that can be referenced by integrations, Flow Designer actions, and other components without hard-coding connection details.

      Parameters

      • config: Alias

        Configuration object for the Alias

      Returns Alias

      import { Alias } from '@servicenow/sdk/core'

      Alias({
      $id: Now.ID['my_alias'],
      name: 'My HTTP Connection',
      type: 'connection',
      connectionType: 'httpConnection',
      description: 'HTTP connection for external API',
      })