jira.js
    Preparing search index...

    Function getScimLinks

    • Get SCIM Links for a Atlassian Account ID (AAID).

      Parameters

      • client: Client
      • parameters: { aaId: string; orgId: string }
        • aaId: string

          Unique ID of the user's account. The AAID can either be found in the URL of a user's profile, when browsing in the "Users" tab or the "Managed Users" tab or use the Get Users API to get the AAID. The URL could look like:

          https://admin.atlassian.com/o/{orgId}/users/{aaId}

          https://admin.atlassian.com/o/{orgId}/members/{aaId}

          https://admin.atlassian.com/s/{siteId}/users/{aaId}

        • orgId: string

          Your organization is identified by a Unique ID. You get your organization ID and Organization API key simultaneously.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              scimLinks?: {
                  atlassianAccountId?: string
                  | null;
                  directoryId: string;
                  orgId: string;
                  scimUserId: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >