async getCrawlerUrlTracingResult()

in packages/enterprise-search/src/api/app/api.ts [561:573]


  async getCrawlerUrlTracingResult (this: That, params: T.GetCrawlerUrlTracingResultRequest, options?: TransportRequestOptions): Promise<T.GetCrawlerUrlTracingResultResponse> {
    const {
      engine_name,
      body,
      ...querystring
    } = params ?? {}
    return await this.transport.request<T.GetCrawlerUrlTracingResultResponse>({
      method: 'POST',
      path: `/api/as/v1/engines/${engine_name}/crawler/trace_url`,
      querystring,
      body: body
    }, options)
  }