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

# /realms/{realmId}/organizations/{organizationId}/accounts/{accountId}/wallets/{walletId}/schedules/{scheduleId}



## OpenAPI

````yaml /api-reference/scheduling.openapi.json patch /realms/{realmId}/organizations/{organizationId}/accounts/{accountId}/wallets/{walletId}/schedules/{scheduleId}
openapi: 3.0.3
info:
  title: Scheduling
  version: 1.0.0
  description: >-
    Portão 3 scheduling API. Generated by tools/openapi from code (routes +
    security) and the hand-written spec (request/response bodies). Confidence
    tiers: generated:typed=5 copied:manual=0 unknown=12.
servers:
  - url: https://api.scheduling.v2.portao3.com.br/
    description: production
  - url: https://api.scheduling.dev.3pers.com.br/
    description: development
security:
  - bearerAuth: []
tags:
  - name: Schedules
paths:
  /realms/{realmId}/organizations/{organizationId}/accounts/{accountId}/wallets/{walletId}/schedules/{scheduleId}:
    patch:
      tags:
        - Schedules
      summary: >-
        /realms/{realmId}/organizations/{organizationId}/accounts/{accountId}/wallets/{walletId}/schedules/{scheduleId}
      operationId: >-
        patchRealmsByRealmIdOrganizationsByOrganizationIdAccountsByAccountIdWalletsByWalletIdSchedulesByScheduleId
      parameters:
        - name: realmId
          in: path
          required: true
          schema:
            type: string
        - name: organizationId
          in: path
          required: true
          schema:
            type: string
        - name: accountId
          in: path
          required: true
          schema:
            type: string
        - name: walletId
          in: path
          required: true
          schema:
            type: string
        - name: scheduleId
          in: path
          required: true
          schema:
            type: string
        - name: timeZone
          in: header
          required: false
          schema:
            type: string
            enum:
              - BRASILIA
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                scheduleDate:
                  type: string
                  format: date-time
                description:
                  type: string
                amount:
                  type: number
                  minimum: 1
      responses:
        default:
          description: Undocumented response (no code type, no existing spec).
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````