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

# Subscribe to resume updates

> Streams lightweight invalidation events when the specified resume changes. The event payload contains metadata only; clients should refetch the resume for canonical data.



## OpenAPI

````yaml /spec.json get /resumes/{id}/updates
openapi: 3.1.1
info:
  title: Reactive Resume
  version: 5.2.2
  description: Reactive Resume API
  license:
    name: MIT
    url: https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE
  contact:
    name: Amruth Pillai
    email: hello@amruthpillai.com
    url: https://amruthpillai.com
servers:
  - url: http://localhost:3000/api/openapi
security:
  - apiKey: []
externalDocs:
  url: https://docs.rxresu.me
  description: Reactive Resume Documentation
paths:
  /resumes/{id}/updates:
    get:
      tags:
        - Resumes
      summary: Subscribe to resume updates
      description: >-
        Streams lightweight invalidation events when the specified resume
        changes. The event payload contains metadata only; clients should
        refetch the resume for canonical data.
      operationId: subscribeResumeUpdates
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            description: The unique identifier of the resume.
      responses:
        '200':
          description: A stream of resume update invalidation events.
          content:
            application/json:
              schema:
                anyOf:
                  - {}
                  - not: {}
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````