jira.js
    Preparing search index...

    Function getDomains

    • Returns a list of domains in an organization one page at a time.

      Authorization scopes required: read:domains:admin

      Parameters

      • client: Client
      • parameters: { cursor?: string; orgId: string }
        • Optionalcursor?: string

          Sets the starting point for the page of results to return.

        • orgId: string

          Your organization has a unique ID. Find this ID in your Atlassian Administration URL or when you create your API key.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              data?: {
                  attributes: {
                      claim?: {
                          status?: | "deleted"
                          | string & {}
                          | "verified"
                          | "unverified"
                          | "superseded"
                          | "missing_token";
                          type?: string & {}
                          | "http"
                          | "dns";
                          [key: string]: unknown;
                      };
                      name?: string;
                      [key: string]: unknown;
                  };
                  id: string;
                  links: { self: string
                  | null; [key: string]: unknown };
                  type: string & {} | "domains";
                  [key: string]: unknown;
              }[];
              links?: {
                  next?: string
                  | null;
                  prev?: string | null;
                  self?: string | null;
                  [key: string]: unknown;
              };
              [key: string]: unknown;
          },
      >