v1

latestOpenAPI 3.1.02026-08-04103211436.0 KB
Forecasts

Update forecasts in bulk

Updates the synchronization status or additional info of several forecasts in a single call, identified by id. Follows the same rules as the single-forecast update endpoint: fields omitted from the request, or sent as null, are left unchanged, and entries whose id does not match any forecast are silently skipped — the call still returns 200 for the whole batch.

patch/forecasts/{companyId}

Path parameters

companyIdstring required

Request body

Example request

{
  "data": [
    {
      "sync": true,
      "id": "fct_00123"
    }
  ]
}

Response

Successful Response

Example response

{
  "data": [
    {
      "id": "fct_00123"
    }
  ]
}