> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ionworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Recompute a measurement's section analyses

> Queue the worker to measure a record's sections again.

Returns 202: the analyses appear on the measurement when the task runs.
Sections already saved for the measurement's current data are left as
they are; a measurement extended since its last analysis gets a new set.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json post /analyses/recompute
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /analyses/recompute:
    post:
      tags:
        - Analyses
      summary: Recompute a measurement's section analyses
      description: |-
        Queue the worker to measure a record's sections again.

        Returns 202: the analyses appear on the measurement when the task runs.
        Sections already saved for the measurement's current data are left as
        they are; a measurement extended since its last analysis gets a new set.
      operationId: recompute_record_analyses_analyses_recompute_post
      parameters:
        - name: measurement_id
          in: query
          required: true
          schema:
            type: string
            description: Measurement to analyze
            title: Measurement Id
          description: Measurement to analyze
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordAnalysisQueued'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RecordAnalysisQueued:
      properties:
        measurement_id:
          type: string
          title: Measurement Id
          description: Measurement being analyzed.
        queued:
          type: boolean
          title: Queued
          description: 'Always true: the task was enqueued.'
          default: true
      type: object
      required:
        - measurement_id
      title: RecordAnalysisQueued
      description: A record analysis was handed to the worker; its analyses land later.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````