Lookup a single Entry in a Search Index.

  • Parameters

    • index_id: string

      The UUID of the Search index where the lookup will be performed.

    • Optionaloptions: {
          query: {
              bypass_visible_to?: "true" | "false";
              entry_id?: string;
              result_format_version?: string;
              subject: string;
          };
      } & {
          headers?: Headers;
          query?: {
              [key: string]:
                  | string
                  | number
                  | boolean
                  | (
                      | string
                      | number
                      | null
                      | undefined)[]
                  | null
                  | undefined;
          };
      }
    • OptionalsdkOptions: SDKOptions

    Returns Promise<Response>