openapi: 3.2.0 info: title: Zoca Platform Working Hours API description: 'The Zoca platform API behind the Zoca web app and mobile apps: scheduling, website generation, Google Business Profile, discovery/local SEO, social media, booking enquiries, offers, clients, staff, billing and the Zoca "brain" agent layer.' version: 3.20.10 contact: {} x-apievangelist-note: Harvested verbatim from https://api.zoca.ai/swagger.json. The provider ships the default NestJS Swagger metadata (title "API Documentation", empty servers[]); title/description/servers were set by API Evangelist for identification and the unmodified original is preserved at openapi/_original/zoca-platform-swagger.json. Every path, operation, summary, parameter and response is exactly as published. servers: - url: https://api.zoca.ai description: Production tags: - name: Working Hours paths: /working-hours: get: operationId: t_value parameters: [] responses: '200': description: '' summary: Get working hours for an entity tags: - Working Hours post: operationId: t_value parameters: [] responses: '200': description: '' summary: Set working hours for an entity tags: - Working Hours /working-hours/supported-languages: get: operationId: t_value parameters: [] responses: '200': description: List of supported languages content: application/json: schema: type: object properties: supportedLanguages: type: array items: type: string example: - en - es - fr - de - it - pt summary: Get list of supported languages for localization tags: - Working Hours /working-hours/{id}: patch: operationId: t_value parameters: [] responses: '200': description: '' summary: Modify a specific working hour tags: - Working Hours delete: operationId: t_value parameters: [] responses: '200': description: '' summary: Remove a specific working hour tags: - Working Hours /working-hours/reorder: patch: operationId: t_value parameters: [] responses: '200': description: Working hours successfully reordered. '400': description: Invalid input data or mismatch in hours. '404': description: Entity not found (implicit). summary: Reorder standard working hours for an entity tags: - Working Hours /working-hours/{id}/attributes: patch: operationId: t_value parameters: [] responses: '200': description: '' summary: Update attributes for a working hour tags: - Working Hours /working-hours/{id}/attributes/{key}: delete: operationId: t_value parameters: [] responses: '200': description: '' summary: Delete a specific attribute key from a working hour tags: - Working Hours /working-hours/special-hours: get: operationId: t_value parameters: [] responses: '200': description: '' summary: Get special hours for an entity tags: - Working Hours post: operationId: t_value parameters: [] responses: '201': description: '' summary: Add a special hour for an entity tags: - Working Hours /working-hours/special-hours/week: get: operationId: t_value parameters: [] responses: '200': description: '' summary: Get special hours for an entity within a date range (staff one-time-override week hydrate) tags: - Working Hours /working-hours/special-hours/bulk: post: operationId: t_value parameters: [] responses: '200': description: '' summary: 'Sync a week of per-date special-hour overrides for an entity (staff one-time schedule): upsert the diff, soft-delete reverted/unchanged in-range dates' tags: - Working Hours /working-hours/special-hours/{id}: patch: operationId: t_value parameters: [] responses: '200': description: '' summary: Modify a specific special hour tags: - Working Hours delete: operationId: t_value parameters: [] responses: '200': description: '' summary: Remove a specific special hour tags: - Working Hours /working-hours/special-hours/{id}/attributes: patch: operationId: t_value parameters: [] responses: '200': description: '' summary: Update attributes for a special hour tags: - Working Hours /working-hours/special-hours/{id}/attributes/{key}: delete: operationId: t_value parameters: [] responses: '200': description: '' summary: Delete a specific attribute key from a special hour tags: - Working Hours components: securitySchemes: access-token: scheme: bearer bearerFormat: JWT type: http name: Authorization description: Enter JWT token in the format Bearer in: header