> ## Documentation Index
> Fetch the complete documentation index at: https://resq-dependabot-github-actions-github-actions-478e18be3d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Process telemetry batch



## OpenAPI

````yaml /specs/coordination.json post /v1/telemetry/batch
openapi: 3.0.3
info:
  title: ResQ Coordination HCE Documentation
  description: Development documentation
  version: 2.0.0
servers: []
security: []
tags:
  - name: Storage
    description: Storage and IPFS endpoints
  - name: Intelligence
    description: Disaster intelligence and reporting
  - name: Simulation
    description: Fault injection and simulation
  - name: Fleet
    description: Fleet management and telemetry
  - name: Admin
    description: Admin endpoints
  - name: Observability
    description: Observability endpoints
paths:
  /v1/telemetry/batch:
    post:
      tags:
        - Fleet
      summary: Process telemetry batch
      operationId: postV1TelemetryBatch
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - packets
              properties:
                packets:
                  type: array
                  items:
                    type: object
                    required:
                      - droneId
                      - timestamp
                      - latitude
                      - longitude
                      - altitude
                      - battery
                    properties:
                      droneId:
                        type: string
                      timestamp:
                        type: number
                      latitude:
                        type: number
                      longitude:
                        type: number
                      altitude:
                        type: number
                      battery:
                        type: number
                      speed:
                        type: number
                      heading:
                        type: number
                      status:
                        type: string
                      metadata:
                        type: object
                        additionalProperties: true
                windowMs:
                  type: number
      responses:
        '200':
          description: Telemetry batch processed

````