SPOTIO Calendar Settings API

The controller is responsible for managing calendar settings. Setup for company users calendar.

Operations 2

GET /api/CalendarSettings Get calendar settings
PUT /api/CalendarSettings Update calendar settings

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/spotio-calendarsettings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

spotio-calendarsettings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Spotio 2.0 Calendar Settings API
  description: '

    The controller is responsible for managing calendar settings. Setup for company users calendar.

    '
  contact:
    name: Contact us
    url: https://spotio.com/contact/
    email: support@spotio.com
servers:
- url: https://api.spotio2.com
  description: Production
- url: https://app-test.spotio2.com
  description: Test
security:
- Bearer: []
tags:
- name: CalendarSettings
  description: '

    The controller is responsible for managing calendar settings. Setup for company users calendar.

    '
paths:
  /api/CalendarSettings:
    get:
      tags:
      - CalendarSettings
      summary: Get calendar settings
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettings'
              examples:
                default:
                  value:
                    companyId: 5a8ae9070d5d9e3268df53c4
                    allowForDoubleBooking: true
                    daysPerWeek: five
                    defaultReminderInSeconds: 900
            application/json:
              schema:
                $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettings'
              examples:
                default:
                  value:
                    companyId: 5a8ae9070d5d9e3268df53c4
                    allowForDoubleBooking: true
                    daysPerWeek: five
                    defaultReminderInSeconds: 900
            text/json:
              schema:
                $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettings'
              examples:
                default:
                  value:
                    companyId: 5a8ae9070d5d9e3268df53c4
                    allowForDoubleBooking: true
                    daysPerWeek: five
                    defaultReminderInSeconds: 900
        '401':
          description: Unauthorized
      security:
      - Bearer: []
      servers:
      - url: https://api.spotio2.com
        description: Production
      - url: https://app-test.spotio2.com
        description: Test
    put:
      tags:
      - CalendarSettings
      summary: Update calendar settings
      requestBody:
        content:
          application/merge-patch+json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettingsRequest'
            examples:
              default:
                value:
                  allowForDoubleBooking: true
                  daysPerWeek: five
                  defaultReminderInSeconds: 900
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettingsRequest'
            examples:
              default:
                value:
                  allowForDoubleBooking: true
                  daysPerWeek: five
                  defaultReminderInSeconds: 900
          application/json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettingsRequest'
            examples:
              default:
                value:
                  allowForDoubleBooking: true
                  daysPerWeek: five
                  defaultReminderInSeconds: 900
          text/json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettingsRequest'
            examples:
              default:
                value:
                  allowForDoubleBooking: true
                  daysPerWeek: five
                  defaultReminderInSeconds: 900
          application/*+json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettingsRequest'
            examples:
              default:
                value:
                  allowForDoubleBooking: true
                  daysPerWeek: five
                  defaultReminderInSeconds: 900
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettings'
              examples:
                default:
                  value:
                    companyId: 5a8ae9070d5d9e3268df53c4
                    allowForDoubleBooking: true
                    daysPerWeek: five
                    defaultReminderInSeconds: 900
            application/json:
              schema:
                $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettings'
              examples:
                default:
                  value:
                    companyId: 5a8ae9070d5d9e3268df53c4
                    allowForDoubleBooking: true
                    daysPerWeek: five
                    defaultReminderInSeconds: 900
            text/json:
              schema:
                $ref: '#/components/schemas/Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettings'
              examples:
                default:
                  value:
                    companyId: 5a8ae9070d5d9e3268df53c4
                    allowForDoubleBooking: true
                    daysPerWeek: five
                    defaultReminderInSeconds: 900
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
      security:
      - Bearer: []
      servers:
      - url: https://api.spotio2.com
        description: Production
      - url: https://app-test.spotio2.com
        description: Test
components:
  schemas:
    Spotio.Appointments.Client.Model.DaysPerWeekDto:
      type: string
      enum:
      - Seven
      - Five
    Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettings:
      type: object
      description: Represents calendar settings.
      additionalProperties: false
      properties:
        companyId:
          type:
          - string
          - 'null'
          description: The company identifier.
        allowForDoubleBooking:
          type: boolean
          description: Indicates whether double booking is allowed.  Users can create a few appointments for one date.
        daysPerWeek:
          $ref: '#/components/schemas/Spotio.Appointments.Client.Model.DaysPerWeekDto'
        defaultReminderInSeconds:
          type: integer
          description: The default reminder time in seconds.
          format: int32
    Spotio.Frontend.ViewModel.CalendarSettings.CalendarSettingsRequest:
      type: object
      description: Represents a request for updating calendar settings.
      additionalProperties: false
      properties:
        allowForDoubleBooking:
          type: boolean
          description: Indicates whether double booking is allowed. Users can create a few appointments for one date.
        daysPerWeek:
          $ref: '#/components/schemas/Spotio.Appointments.Client.Model.DaysPerWeekDto'
        defaultReminderInSeconds:
          type: integer
          description: The default reminder time in seconds.
          format: int32
  securitySchemes:
    Bearer:
      type: apiKey
      description: 'Enter the Bearer Authorization string as following: `Bearer Generated-JWT-Token`'
      name: Authorization
      in: header