latestOpenAPI 3.0.02026-08-1610635191.3 KB

355890b6b4cc

Deep Research

Update a recurring deep research template

Updates specific fields of a recurring template. Can be used to pause/resume, change frequency, update end date, or modify the research text.

post/deep-research/recurring/{id}

Path parameters

idstring required

The unique ID of the recurring template to update

Request body

textstring

New research query text

dailyCountinteger

New number of executions per day

scheduleEndDatestring date-time nullable

New end date for the recurring executions (null to remove end date)

isActiveboolean

Set to false to pause the recurring template, true to resume

Example request

{
  "text": "Updated research on AI ethics",
  "dailyCount": 3,
  "scheduleEndDate": "2025-01-31T23:59:59Z"
}

Response

Recurring template updated successfully

successboolean
messagestring
templateobject

The updated template with all fields (same structure as GET /deep-research/recurring response items)

Example response

{
  "success": true,
  "message": "Recurring template updated successfully"
}