in packages/enterprise-search/src/api/app/api.ts [187:199]
async createCrawlerCrawlRequest (this: That, params: T.CreateCrawlerCrawlRequestRequest, options?: TransportRequestOptions): Promise<T.CreateCrawlerCrawlRequestResponse> {
const {
engine_name,
body,
...querystring
} = params ?? {}
return await this.transport.request<T.CreateCrawlerCrawlRequestResponse>({
method: 'POST',
path: `/api/as/v1/engines/${engine_name}/crawler/crawl_requests`,
querystring,
body: body
}, options)
}