Kumospace Walls API

The Walls API from Kumospace — 1 operation(s) for walls.

Operations 1

PUT /v1/spaces/{name}/rooms/{roomId}/zones/{zoneId}/walls/{wallId} Update a wall segment. #

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/kumospace-walls-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 email required.

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

OpenAPI Specification

kumospace-walls-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: '@kumo/api Account Walls API'
  contact: {}
servers:
- url: /
tags:
- name: Walls
paths:
  /v1/spaces/{name}/rooms/{roomId}/zones/{zoneId}/walls/{wallId}:
    put:
      operationId: UpdateZone
      responses:
        '204':
          description: ''
      description: Update a wall segment.
      summary: Update a wall segment.
      tags:
      - Walls
      security:
      - firebase: []
      parameters:
      - description: The name of the space.
        in: path
        name: name
        required: true
        schema:
          type: string
      - description: The room id.
        in: path
        name: roomId
        required: true
        schema:
          type: string
      - description: The zone id.
        in: path
        name: zoneId
        required: true
        schema:
          type: string
      - description: The id of the wall segment to update
        in: path
        name: wallId
        required: true
        schema:
          type: string
      requestBody:
        description: The fields to update.
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiUpdateWallSegmentRequest'
              description: The fields to update.
components:
  schemas:
    ApiUpdateWallSegmentRequest:
      properties:
        stockWallId:
          type: string
        behavior:
          $ref: '#/components/schemas/ApiWallBehavior'
      type: object
      additionalProperties: false
    ApiWallBehavior:
      $ref: '#/components/schemas/DbWallBehavior'
    DbWallBehavior:
      allOf:
      - properties:
          disableCollision:
            type: boolean
        type: object
      - anyOf:
        - properties:
            type:
              $ref: '#/components/schemas/WallBehaviorType.none'
          required:
          - type
          type: object
        - properties:
            data:
              properties:
                hinge:
                  type: string
                  enum:
                  - left
                  - right
              required:
              - hinge
              type: object
            type:
              $ref: '#/components/schemas/WallBehaviorType.door'
          required:
          - data
          - type
          type: object
    WallBehaviorType.none:
      enum:
      - none
      type: string
    WallBehaviorType.door:
      enum:
      - door
      type: string
  securitySchemes:
    firebase:
      type: http
      scheme: bearer
      bearerFormat: JWT