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

# Attach signed court-order metadata to a recovery case



## OpenAPI

````yaml /api-reference/openapi.yaml patch /recovery-cases/{jrcHash}/court-order
openapi: 3.1.0
info:
  title: Jurat Recovery Integration API
  version: 1.0.0
  description: >-
    Versioned API for wallets and web3 apps integrating Jurat recovery and
    probate.
servers:
  - url: https://api.jurat.io/api/v1
    description: Production
  - url: http://localhost:3000/api/v1
    description: Local development
security: []
paths:
  /recovery-cases/{jrcHash}/court-order:
    patch:
      summary: Attach signed court-order metadata to a recovery case
      parameters:
        - name: jrcHash
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - courtInfo
                - signature
              properties:
                courtInfo:
                  $ref: '#/components/schemas/CourtInfo'
                signature:
                  type: string
      responses:
        '200':
          description: Updated case
      security:
        - apiKeyAuth: []
          apiSecretAuth: []
        - bearerAuth: []
        - cookieAuth: []
components:
  schemas:
    CourtInfo:
      type: object
      required:
        - title
        - fullCaseNumber
        - courtId
        - docketNumber
      properties:
        title:
          type:
            - string
            - 'null'
        fullCaseNumber:
          type:
            - string
            - 'null'
        courtId:
          type:
            - string
            - 'null'
        docketNumber:
          type:
            - integer
            - 'null'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Send `x-api-key` together with `x-api-secret`.
    apiSecretAuth:
      type: apiKey
      in: header
      name: x-api-secret
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    cookieAuth:
      type: apiKey
      in: cookie
      name: access_token

````