async getApiLogs()

in packages/enterprise-search/src/api/app/api.ts [896:908]


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