jira.js
    Preparing search index...

    Function getUserPropertyKeys

    • Returns the keys of all properties for a user.

      Note: This operation does not access the user properties created and maintained in Jira.

      Permissions required:

      • Administer Jira global permission, to access the property keys on any user.
      • Access to Jira, to access the calling user's property keys.

      Parameters

      • client: Client
      • Optionalparameters: { accountId?: string }
        • OptionalaccountId?: string

          The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              keys?: { key?: string; self?: string; [key: string]: unknown }[];
              [key: string]: unknown;
          },
      >