Function getGlossaryTermLinks

  • Returns a list of links assigned to a term.

    Parameters

    • id: string

      The glossary id.

    • termId: string

      The term id.

    • query: {
          countTotal?: boolean;
          filter?: string;
          limit?: number;
          next?: string;
          prev?: string;
          sort?:
              | "type"
              | "created"
              | "+created"
              | "-created"
              | "+type"
              | "-type"
              | "subtype"
              | "+subtype"
              | "-subtype";
      }

      an object with query parameters

      • OptionalcountTotal?: boolean

        Optional parameter to request total count for query

      • Optionalfilter?: string

        Optional SCIM filter to be used to filter terms

      • Optionallimit?: number

        The number of terms to get.

      • Optionalnext?: string

        Optional parameter to request the next page.

      • Optionalprev?: string

        Optional parameter to request the previous page.

      • Optionalsort?:
            | "type"
            | "created"
            | "+created"
            | "-created"
            | "+type"
            | "-type"
            | "subtype"
            | "+subtype"
            | "-subtype"

        Optional resource field name to sort on, eg. name. Can be prefixed with +/- to determine order, defaults to (+) ascending.

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetGlossaryTermLinksHttpResponse>

    GetGlossaryTermLinksHttpError