async logClickthrough()

in packages/enterprise-search/src/api/app/api.ts [159:171]


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