openapi: 3.1.0 info: title: Microsoft Graph Places description: Needs a description. paths: /places: description: Provides operations to manage the collection of place entities. post: tags: - Places.place summary: Microsoft Graph Create place description: >- Create a new place object. You can also use this method to create the following child object types: building, floor, section, room, workspace, or desk. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-post?view=graph-rest-1.0 operationId: places.place.CreatePlace requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.place' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.place' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /places/{place-id}: description: Provides operations to manage the collection of place entities. patch: tags: - Places.place summary: Microsoft Graph Update place description: >- Update the properties of place object that can be a building, floor, section, desk, room, workspace, or roomList. You can identify the place by specifying the id property. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0 operationId: places.place.UpdatePlace requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.place' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.place' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Places.place summary: Microsoft Graph Delete place description: >- Delete a place object. You can also use this method to delete the following child object types: building, floor, section, or desk. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-delete?view=graph-rest-1.0 operationId: places.place.DeletePlace parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkInClaim description: >- Read the properties and relationships of a checkInClaim object. This API provides the check-in status for a specific place, such as a desk, room, or workspace, associated with a particular reservation. operationId: places.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create checkInClaim description: >- Create a new checkInClaim object to record the check-in status for a specific place, such as a desk or a room, associated with a specific calendar reservation. This check-in confirms that the reserved space is in use and prevents automatic release if auto-release policies are configured for that place. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/place-post-checkins?view=graph-rest-1.0 operationId: places.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkInClaim description: >- Read the properties and relationships of a checkInClaim object. This API provides the check-in status for a specific place, such as a desk, room, or workspace, associated with a particular reservation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/checkinclaim-get?view=graph-rest-1.0 operationId: places.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.checkIns.GetCount-2709 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.building: description: Casts the previous resource to building. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.GetPlace.AsBuilding parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.building' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.building/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsBuilding.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsBuilding.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsBuilding.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsBuilding.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsBuilding.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.building/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.AsBuilding.checkIns.GetCount-114f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.building/map: description: >- Provides operations to manage the map property of the microsoft.graph.building entity. get: tags: - places.buildingMap summary: Microsoft Graph Get buildingMap description: Get the map of a building in IMDF format. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/buildingmap-get?view=graph-rest-1.0 operationId: places.AsBuilding.GetMap parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.buildingMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.buildingMap summary: Microsoft Graph Update the navigation property map in places operationId: places.AsBuilding.UpdateMap requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.buildingMap' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.buildingMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.buildingMap summary: Microsoft Graph Delete buildingMap description: Delete the map of a specific building. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/buildingmap-delete?view=graph-rest-1.0 operationId: places.AsBuilding.DeleteMap parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.building/map/footprints: description: >- Provides operations to manage the footprints property of the microsoft.graph.buildingMap entity. get: tags: - places.buildingMap summary: Microsoft Graph List footprints description: >- Get a list of footprintMap objects for building footprints and their properties. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/buildingmap-list-footprints?view=graph-rest-1.0 operationId: places.AsBuilding.map.ListFootprints parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.footprintMapCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.buildingMap summary: Microsoft Graph Create new navigation property to footprints for places operationId: places.AsBuilding.map.CreateFootprints requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.footprintMap' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.footprintMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.building/map/footprints/{footprintMap-id}: description: >- Provides operations to manage the footprints property of the microsoft.graph.buildingMap entity. get: tags: - places.buildingMap summary: Microsoft Graph Get footprints from places description: >- Represents the approximate physical extent of a referenced building. It corresponds to footprint.geojson in IMDF format. operationId: places.AsBuilding.map.GetFootprints parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.footprintMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.buildingMap summary: Microsoft Graph Update the navigation property footprints in places operationId: places.AsBuilding.map.UpdateFootprints requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.footprintMap' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.footprintMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.buildingMap summary: Microsoft Graph Delete navigation property footprints for places operationId: places.AsBuilding.map.DeleteFootprints parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: footprintMap-id in: path description: The unique identifier of footprintMap required: true schema: type: string x-ms-docs-key-type: footprintMap /places/{place-id}/graph.building/map/footprints/$count: description: Provides operations to count the resources in the collection. get: tags: - places.buildingMap summary: Microsoft Graph Get the number of the resource operationId: places.AsBuilding.map.footprints.GetCount-273d parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.building/map/levels: description: >- Provides operations to manage the levels property of the microsoft.graph.buildingMap entity. get: tags: - places.buildingMap summary: Microsoft Graph List levels description: Get a list of the levelMap objects and their properties. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/buildingmap-list-levels?view=graph-rest-1.0 operationId: places.AsBuilding.map.ListLevels parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.levelMapCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.buildingMap summary: Microsoft Graph Create new navigation property to levels for places operationId: places.AsBuilding.map.CreateLevels requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.levelMap' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.levelMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.building/map/levels/{levelMap-id}: description: >- Provides operations to manage the levels property of the microsoft.graph.buildingMap entity. get: tags: - places.buildingMap summary: Microsoft Graph Get levels from places description: >- Represents a physical floor structure within a building. It corresponds to level.geojson in IMDF format. operationId: places.AsBuilding.map.GetLevels parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.levelMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.buildingMap summary: Microsoft Graph Update the navigation property levels in places operationId: places.AsBuilding.map.UpdateLevels requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.levelMap' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.levelMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.buildingMap summary: Microsoft Graph Delete navigation property levels for places operationId: places.AsBuilding.map.DeleteLevels parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures: description: >- Provides operations to manage the fixtures property of the microsoft.graph.levelMap entity. get: tags: - places.buildingMap summary: Microsoft Graph List fixtures description: Get a list of the fixtureMap objects and their properties. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/levelmap-list-fixtures?view=graph-rest-1.0 operationId: places.AsBuilding.map.levels.ListFixtures parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.fixtureMapCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.buildingMap summary: Microsoft Graph Create new navigation property to fixtures for places operationId: places.AsBuilding.map.levels.CreateFixtures requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fixtureMap' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fixtureMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures/{fixtureMap-id}: description: >- Provides operations to manage the fixtures property of the microsoft.graph.levelMap entity. get: tags: - places.buildingMap summary: Microsoft Graph Get fixtures from places description: >- Collection of fixtures (such as furniture or equipment) on this level. Supports upsert. operationId: places.AsBuilding.map.levels.GetFixtures parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fixtureMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.buildingMap summary: Microsoft Graph Update fixtureMap description: >- Update the properties of an existing fixtureMap object in IMDF format on a specified floor, or create one if it doesn't exist. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/fixturemap-update?view=graph-rest-1.0 operationId: places.AsBuilding.map.levels.UpdateFixtures requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fixtureMap' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fixtureMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.buildingMap summary: Microsoft Graph Delete fixtureMap description: Delete a fixture on a specified floor. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/fixturemap-delete?view=graph-rest-1.0 operationId: places.AsBuilding.map.levels.DeleteFixtures parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap - name: fixtureMap-id in: path description: The unique identifier of fixtureMap required: true schema: type: string x-ms-docs-key-type: fixtureMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures/$count: description: Provides operations to count the resources in the collection. get: tags: - places.buildingMap summary: Microsoft Graph Get the number of the resource operationId: places.AsBuilding.map.levels.fixtures.GetCount-85dd parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.levelMap entity. get: tags: - places.buildingMap summary: Microsoft Graph List sections description: Get a list of the sectionMap objects and their properties. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/levelmap-list-sections?view=graph-rest-1.0 operationId: places.AsBuilding.map.levels.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.sectionMapCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.buildingMap summary: Microsoft Graph Create new navigation property to sections for places operationId: places.AsBuilding.map.levels.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionMap' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/sections/{sectionMap-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.levelMap entity. get: tags: - places.buildingMap summary: Microsoft Graph Get sections from places description: >- Collection of sections (such as zones or partitions) on this level. Supports upsert. operationId: places.AsBuilding.map.levels.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.buildingMap summary: Microsoft Graph Update the navigation property sections in places operationId: places.AsBuilding.map.levels.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionMap' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.buildingMap summary: Microsoft Graph Delete navigation property sections for places operationId: places.AsBuilding.map.levels.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap - name: sectionMap-id in: path description: The unique identifier of sectionMap required: true schema: type: string x-ms-docs-key-type: sectionMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - places.buildingMap summary: Microsoft Graph Get the number of the resource operationId: places.AsBuilding.map.levels.sections.GetCount-bdac parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/units: description: >- Provides operations to manage the units property of the microsoft.graph.levelMap entity. get: tags: - places.buildingMap summary: Microsoft Graph List units description: Get a list of the unitMap objects and their properties. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/levelmap-list-units?view=graph-rest-1.0 operationId: places.AsBuilding.map.levels.ListUnits parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.unitMapCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.buildingMap summary: Microsoft Graph Create new navigation property to units for places operationId: places.AsBuilding.map.levels.CreateUnits requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.unitMap' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.unitMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/units/{unitMap-id}: description: >- Provides operations to manage the units property of the microsoft.graph.levelMap entity. get: tags: - places.buildingMap summary: Microsoft Graph Get units from places description: >- Collection of units (such as rooms or offices) on this level. Supports upsert. operationId: places.AsBuilding.map.levels.GetUnits parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.unitMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.buildingMap summary: Microsoft Graph Update unitMap description: >- Update the properties of an existing unitMap object in IMDF format on a specified floor, or create one if it doesn't exist. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/unitmap-update?view=graph-rest-1.0 operationId: places.AsBuilding.map.levels.UpdateUnits requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.unitMap' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.unitMap' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.buildingMap summary: Microsoft Graph Delete unitMap description: Delete a unitMap object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/unitmap-delete?view=graph-rest-1.0 operationId: places.AsBuilding.map.levels.DeleteUnits parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap - name: unitMap-id in: path description: The unique identifier of unitMap required: true schema: type: string x-ms-docs-key-type: unitMap /places/{place-id}/graph.building/map/levels/{levelMap-id}/units/$count: description: Provides operations to count the resources in the collection. get: tags: - places.buildingMap summary: Microsoft Graph Get the number of the resource operationId: places.AsBuilding.map.levels.units.GetCount-3fc3 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: levelMap-id in: path description: The unique identifier of levelMap required: true schema: type: string x-ms-docs-key-type: levelMap /places/{place-id}/graph.building/map/levels/$count: description: Provides operations to count the resources in the collection. get: tags: - places.buildingMap summary: Microsoft Graph Get the number of the resource operationId: places.AsBuilding.map.levels.GetCount-292f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/descendants(): description: Provides operations to call the descendants method. get: tags: - places.place.Functions summary: Microsoft Graph Invoke function descendants operationId: places.place.descendants parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of place type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.place' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.desk: description: Casts the previous resource to desk. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.GetPlace.AsDesk parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.desk' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.desk/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsDesk.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsDesk.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsDesk.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsDesk.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsDesk.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.desk/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.AsDesk.checkIns.GetCount-fd8b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.floor: description: Casts the previous resource to floor. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.GetPlace.AsFloor parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.floor' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.floor/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsFloor.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsFloor.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsFloor.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsFloor.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsFloor.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.floor/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.AsFloor.checkIns.GetCount-e279 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.room: description: Casts the previous resource to room. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.GetPlace.AsRoom parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.room' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.room/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoom.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsRoom.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoom.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsRoom.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsRoom.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.room/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.AsRoom.checkIns.GetCount-9b19 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.roomList: description: Casts the previous resource to roomList. get: tags: - Places.place summary: Microsoft Graph Get the item of type microsoft.graph.place as microsoft.graph.roomList operationId: places.place.GetPlace.AsRoomList parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.roomList' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.roomList/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoomList.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsRoomList.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoomList.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsRoomList.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsRoomList.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.roomList/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.AsRoomList.checkIns.GetCount-e70f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.roomList/rooms: description: >- Provides operations to manage the rooms property of the microsoft.graph.roomList entity. get: tags: - Places.room summary: Microsoft Graph Get rooms from places operationId: places.AsRoomList.ListRooms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.roomCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Places.room summary: Microsoft Graph Create new navigation property to rooms for places operationId: places.AsRoomList.CreateRooms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.room' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.room' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.roomList/rooms/{room-id}: description: >- Provides operations to manage the rooms property of the microsoft.graph.roomList entity. get: tags: - Places.room summary: Microsoft Graph Get rooms from places operationId: places.AsRoomList.GetRooms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.room' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Places.room summary: Microsoft Graph Update the navigation property rooms in places operationId: places.AsRoomList.UpdateRooms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.room' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.room' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Places.room summary: Microsoft Graph Delete navigation property rooms for places operationId: places.AsRoomList.DeleteRooms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: room-id in: path description: The unique identifier of room required: true schema: type: string x-ms-docs-key-type: room /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - Places.room summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoomList.rooms.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Places.room summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsRoomList.rooms.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: room-id in: path description: The unique identifier of room required: true schema: type: string x-ms-docs-key-type: room x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - Places.room summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoomList.rooms.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Places.room summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsRoomList.rooms.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Places.room summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsRoomList.rooms.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: room-id in: path description: The unique identifier of room required: true schema: type: string x-ms-docs-key-type: room - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.room summary: Microsoft Graph Get the number of the resource operationId: places.AsRoomList.rooms.checkIns.GetCount-28dc parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: room-id in: path description: The unique identifier of room required: true schema: type: string x-ms-docs-key-type: room /places/{place-id}/graph.roomList/rooms/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.room summary: Microsoft Graph Get the number of the resource operationId: places.AsRoomList.rooms.GetCount-b534 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.roomList/workspaces: description: >- Provides operations to manage the workspaces property of the microsoft.graph.roomList entity. get: tags: - Places.workspace summary: Microsoft Graph Get workspaces from places operationId: places.AsRoomList.ListWorkspaces parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.workspaceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Places.workspace summary: Microsoft Graph Create new navigation property to workspaces for places operationId: places.AsRoomList.CreateWorkspaces requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.workspace' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.workspace' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.roomList/workspaces/{workspace-id}: description: >- Provides operations to manage the workspaces property of the microsoft.graph.roomList entity. get: tags: - Places.workspace summary: Microsoft Graph Get workspaces from places operationId: places.AsRoomList.GetWorkspaces parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.workspace' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Places.workspace summary: Microsoft Graph Update the navigation property workspaces in places operationId: places.AsRoomList.UpdateWorkspaces requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.workspace' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.workspace' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Places.workspace summary: Microsoft Graph Delete navigation property workspaces for places operationId: places.AsRoomList.DeleteWorkspaces parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: workspace-id in: path description: The unique identifier of workspace required: true schema: type: string x-ms-docs-key-type: workspace /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - Places.workspace summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoomList.workspaces.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Places.workspace summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsRoomList.workspaces.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: workspace-id in: path description: The unique identifier of workspace required: true schema: type: string x-ms-docs-key-type: workspace x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.section/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - Places.workspace summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsRoomList.workspaces.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Places.workspace summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsRoomList.workspaces.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Places.workspace summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsRoomList.workspaces.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: workspace-id in: path description: The unique identifier of workspace required: true schema: type: string x-ms-docs-key-type: workspace - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.workspace summary: Microsoft Graph Get the number of the resource operationId: places.AsRoomList.workspaces.checkIns.GetCount-8c5e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: workspace-id in: path description: The unique identifier of workspace required: true schema: type: string x-ms-docs-key-type: workspace /places/{place-id}/graph.roomList/workspaces/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.workspace summary: Microsoft Graph Get the number of the resource operationId: places.AsRoomList.workspaces.GetCount-4b94 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.section: description: Casts the previous resource to section. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.GetPlace.AsSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.section' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.section/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsSection.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsSection.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.workspace/checkIns /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsSection.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsSection.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsSection.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.section/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.AsSection.checkIns.GetCount-4bba parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.workspace: description: Casts the previous resource to workspace. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.GetPlace.AsWorkspace parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.workspace' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/{place-id}/graph.workspace/checkIns: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsWorkspace.ListCheckIns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.checkInClaimCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - places.checkInClaim summary: Microsoft Graph Create new navigation property to checkIns for places operationId: places.AsWorkspace.CreateCheckIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place x-ms-docs-grouped-path: - /places/{place-id}/checkIns - /places/{place-id}/graph.building/checkIns - /places/{place-id}/graph.desk/checkIns - /places/{place-id}/graph.floor/checkIns - /places/{place-id}/graph.room/checkIns - /places/{place-id}/graph.roomList/checkIns - /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns - /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns - /places/{place-id}/graph.section/checkIns /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId}: description: >- Provides operations to manage the checkIns property of the microsoft.graph.place entity. get: tags: - places.checkInClaim summary: Microsoft Graph Get checkIns from places description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. operationId: places.AsWorkspace.GetCheckIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - places.checkInClaim summary: Microsoft Graph Update the navigation property checkIns in places operationId: places.AsWorkspace.UpdateCheckIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.checkInClaim' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - places.checkInClaim summary: Microsoft Graph Delete navigation property checkIns for places operationId: places.AsWorkspace.DeleteCheckIns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place - name: checkInClaim-calendarEventId in: path description: The unique identifier of checkInClaim required: true schema: type: string x-ms-docs-key-type: checkInClaim x-ms-docs-grouped-path: - /places/{place-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId} - >- /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId} - /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId} /places/{place-id}/graph.workspace/checkIns/$count: description: Provides operations to count the resources in the collection. get: tags: - places.checkInClaim summary: Microsoft Graph Get the number of the resource operationId: places.AsWorkspace.checkIns.GetCount-d022 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: place-id in: path description: The unique identifier of place required: true schema: type: string x-ms-docs-key-type: place /places/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.GetCount-f02b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /places/graph.building: description: Casts the previous resource to building. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.ListPlace.AsBuilding parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.buildingCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /places/graph.building/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.place.Place.GetCount.AsBuilding-9b72 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /places/graph.desk: description: Casts the previous resource to desk. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.ListPlace.AsDesk parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.deskCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /places/graph.desk/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.place.Place.GetCount.AsDesk-6f90 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /places/graph.floor: description: Casts the previous resource to floor. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.ListPlace.AsFloor parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.floorCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /places/graph.floor/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.place.Place.GetCount.AsFloor-2f1e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /places/graph.room: description: Casts the previous resource to room. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.ListPlace.AsRoom parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.roomCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /places/graph.room/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.place.Place.GetCount.AsRoom-56fc parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /places/graph.roomList: description: Casts the previous resource to roomList. get: tags: - Places.place summary: >- Microsoft Graph Get the items of type microsoft.graph.roomList in the microsoft.graph.place collection operationId: places.place.ListPlace.AsRoomList parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.roomListCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /places/graph.roomList/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.place.Place.GetCount.AsRoomList-e9fd parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /places/graph.section: description: Casts the previous resource to section. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.ListPlace.AsSection parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.sectionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /places/graph.section/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.place.Place.GetCount.AsSection-95fa parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /places/graph.workspace: description: Casts the previous resource to workspace. get: tags: - Places.place summary: Microsoft Graph List place objects description: "Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0 operationId: places.place.ListPlace.AsWorkspace parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.workspaceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /places/graph.workspace/$count: description: Provides operations to count the resources in the collection. get: tags: - Places.place summary: Microsoft Graph Get the number of the resource operationId: places.place.Place.GetCount.AsWorkspace-7f2e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' components: schemas: microsoft.graph.place: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: place required: - '@odata.type' type: object properties: address: anyOf: - $ref: '#/components/schemas/microsoft.graph.physicalAddress' - type: object nullable: true description: >- The physical address of the place, including the street, city, state, country or region, and postal code. displayName: type: string description: The name that is associated with the place. geoCoordinates: anyOf: - $ref: '#/components/schemas/microsoft.graph.outlookGeoCoordinates' - type: object nullable: true description: >- Specifies the place location in latitude, longitude, and (optionally) altitude coordinates. isWheelChairAccessible: type: boolean description: Indicates whether the place is wheelchair accessible. nullable: true label: type: string description: User-defined description of the place. nullable: true parentId: type: string description: The ID of a parent place. nullable: true phone: type: string description: The phone number of the place. nullable: true tags: type: array items: type: string description: >- Custom tags that are associated with the place for categorization or filtering. checkIns: type: array items: $ref: '#/components/schemas/microsoft.graph.checkInClaim' description: >- A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. x-ms-navigationProperty: true '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.building': '#/components/schemas/microsoft.graph.building' '#microsoft.graph.desk': '#/components/schemas/microsoft.graph.desk' '#microsoft.graph.floor': '#/components/schemas/microsoft.graph.floor' '#microsoft.graph.room': '#/components/schemas/microsoft.graph.room' '#microsoft.graph.roomList': '#/components/schemas/microsoft.graph.roomList' '#microsoft.graph.section': '#/components/schemas/microsoft.graph.section' '#microsoft.graph.workspace': '#/components/schemas/microsoft.graph.workspace' microsoft.graph.checkInClaim: title: checkInClaim required: - '@odata.type' type: object properties: calendarEventId: type: string description: >- The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. checkInMethod: $ref: '#/components/schemas/microsoft.graph.checkInMethod' createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time when the checkInClaim object was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. format: date-time nullable: true '@odata.type': type: string microsoft.graph.building: allOf: - $ref: '#/components/schemas/microsoft.graph.place' - title: building required: - '@odata.type' type: object properties: resourceLinks: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceLink' description: >- A set of links to external resources that are associated with the building. Inherited from place. map: anyOf: - $ref: '#/components/schemas/microsoft.graph.buildingMap' - type: object nullable: true description: >- Map file associated with a building in Places. This object is the IMDF-format representation of building.geojson. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.building' x-ms-discriminator-value: '#microsoft.graph.building' microsoft.graph.buildingMap: allOf: - $ref: '#/components/schemas/microsoft.graph.baseMapFeature' - title: buildingMap required: - '@odata.type' type: object properties: placeId: type: string description: Identifier for the building to which this buildingMap belongs. nullable: true footprints: type: array items: $ref: '#/components/schemas/microsoft.graph.footprintMap' description: >- Represents the approximate physical extent of a referenced building. It corresponds to footprint.geojson in IMDF format. x-ms-navigationProperty: true levels: type: array items: $ref: '#/components/schemas/microsoft.graph.levelMap' description: >- Represents a physical floor structure within a building. It corresponds to level.geojson in IMDF format. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.buildingMap' x-ms-discriminator-value: '#microsoft.graph.buildingMap' microsoft.graph.footprintMap: allOf: - $ref: '#/components/schemas/microsoft.graph.baseMapFeature' - title: footprintMap required: - '@odata.type' type: object properties: '@odata.type': type: string default: '#microsoft.graph.footprintMap' x-ms-discriminator-value: '#microsoft.graph.footprintMap' microsoft.graph.levelMap: allOf: - $ref: '#/components/schemas/microsoft.graph.baseMapFeature' - title: levelMap required: - '@odata.type' type: object properties: placeId: type: string description: Identifier of the floor to which this levelMap belongs. nullable: true fixtures: type: array items: $ref: '#/components/schemas/microsoft.graph.fixtureMap' description: >- Collection of fixtures (such as furniture or equipment) on this level. Supports upsert. x-ms-navigationProperty: true sections: type: array items: $ref: '#/components/schemas/microsoft.graph.sectionMap' description: >- Collection of sections (such as zones or partitions) on this level. Supports upsert. x-ms-navigationProperty: true units: type: array items: $ref: '#/components/schemas/microsoft.graph.unitMap' description: >- Collection of units (such as rooms or offices) on this level. Supports upsert. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.levelMap' x-ms-discriminator-value: '#microsoft.graph.levelMap' microsoft.graph.fixtureMap: allOf: - $ref: '#/components/schemas/microsoft.graph.baseMapFeature' - title: fixtureMap required: - '@odata.type' type: object properties: placeId: type: string description: Identifier for the floor to which this fixtureMap belongs. nullable: true '@odata.type': type: string default: '#microsoft.graph.fixtureMap' x-ms-discriminator-value: '#microsoft.graph.fixtureMap' microsoft.graph.sectionMap: allOf: - $ref: '#/components/schemas/microsoft.graph.baseMapFeature' - title: sectionMap required: - '@odata.type' type: object properties: placeId: type: string description: Identifier of the section to which this sectionMap belongs. nullable: true '@odata.type': type: string default: '#microsoft.graph.sectionMap' x-ms-discriminator-value: '#microsoft.graph.sectionMap' microsoft.graph.unitMap: allOf: - $ref: '#/components/schemas/microsoft.graph.baseMapFeature' - title: unitMap required: - '@odata.type' type: object properties: placeId: type: string description: >- Identifier of the place (such as a room) to which this unitMap belongs. nullable: true '@odata.type': type: string default: '#microsoft.graph.unitMap' x-ms-discriminator-value: '#microsoft.graph.unitMap' BaseCollectionPaginationCountResponse: title: Base collection pagination and count responses type: object properties: '@odata.count': type: integer format: int64 nullable: true '@odata.nextLink': type: string nullable: true microsoft.graph.desk: allOf: - $ref: '#/components/schemas/microsoft.graph.place' - title: desk required: - '@odata.type' type: object properties: displayDeviceName: type: string description: >- The name of the display device (for example, monitor or projector) that is available at the desk. nullable: true mailboxDetails: anyOf: - $ref: '#/components/schemas/microsoft.graph.mailboxDetails' - type: object nullable: true description: >- The mailbox object id and email address that are associated with the desk. mode: anyOf: - $ref: '#/components/schemas/microsoft.graph.placeMode' - type: object nullable: true description: >- The mode of the desk. The supported modes are:assignedPlaceMode - Desks that are assigned to a user.reservablePlaceMode - Desks that can be booked in advance using desk reservation tools.dropInPlaceMode - First come, first served desks. When you plug into a peripheral on one of these desks, the desk is booked for you, assuming the peripheral is associated with the desk in the Microsoft Teams Rooms Pro management portal. '@odata.type': type: string default: '#microsoft.graph.desk' x-ms-discriminator-value: '#microsoft.graph.desk' microsoft.graph.floor: allOf: - $ref: '#/components/schemas/microsoft.graph.place' - title: floor required: - '@odata.type' type: object properties: sortOrder: maximum: 2147483647 minimum: -2147483648 type: number description: >- Specifies the sort order of the floor. For example, a floor might be named 'Lobby' with a sort order of 0 to show this floor first in ordered lists. format: int32 nullable: true '@odata.type': type: string default: '#microsoft.graph.floor' x-ms-discriminator-value: '#microsoft.graph.floor' microsoft.graph.room: allOf: - $ref: '#/components/schemas/microsoft.graph.place' - title: room required: - '@odata.type' type: object properties: audioDeviceName: type: string description: Specifies the name of the audio device in the room. nullable: true bookingType: anyOf: - $ref: '#/components/schemas/microsoft.graph.bookingType' - type: object nullable: true description: 'Type of room. Possible values are: unknown, standard, reserved.' building: type: string description: >- Specifies the building name or building number that the room is in. nullable: true capacity: maximum: 2147483647 minimum: -2147483648 type: number description: Specifies the capacity of the room. format: int32 nullable: true displayDeviceName: type: string description: Specifies the name of the display device in the room. nullable: true emailAddress: type: string description: Email address of the room. nullable: true floorLabel: type: string description: Specifies a descriptive label for the floor, for example, P. nullable: true floorNumber: maximum: 2147483647 minimum: -2147483648 type: number description: Specifies the floor number that the room is on. format: int32 nullable: true nickname: type: string description: Specifies a nickname for the room, for example, 'conf room'. videoDeviceName: type: string description: Specifies the name of the video device in the room. nullable: true '@odata.type': type: string default: '#microsoft.graph.room' x-ms-discriminator-value: '#microsoft.graph.room' microsoft.graph.roomList: allOf: - $ref: '#/components/schemas/microsoft.graph.place' - title: roomList required: - '@odata.type' type: object properties: emailAddress: type: string description: The email address of the room list. nullable: true rooms: type: array items: $ref: '#/components/schemas/microsoft.graph.room' x-ms-navigationProperty: true workspaces: type: array items: $ref: '#/components/schemas/microsoft.graph.workspace' x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.roomList' x-ms-discriminator-value: '#microsoft.graph.roomList' microsoft.graph.workspace: allOf: - $ref: '#/components/schemas/microsoft.graph.place' - title: workspace required: - '@odata.type' type: object properties: capacity: maximum: 2147483647 minimum: -2147483648 type: number description: The maximum number of individual desks within a workspace. format: int32 nullable: true displayDeviceName: type: string description: >- The name of the display device (for example, monitor or projector) that is available in the workspace. nullable: true emailAddress: type: string description: >- The email address that is associated with the workspace. This email address is used for booking. nullable: true mode: anyOf: - $ref: '#/components/schemas/microsoft.graph.placeMode' - type: object nullable: true description: >- The mode for a workspace. The supported modes are:reservablePlaceMode - Workspaces that can be booked in advance using desk pool reservation tools.dropInPlaceMode - First come, first served desks. When you plug into a peripheral on one of these desks in the workspace, the desk is booked for you, assuming that the peripheral has been associated with the desk in the Microsoft Teams Rooms Pro management portal. nickname: type: string description: >- A short, friendly name for the workspace, often used for easier identification or display in the UI. '@odata.type': type: string default: '#microsoft.graph.workspace' x-ms-discriminator-value: '#microsoft.graph.workspace' microsoft.graph.section: allOf: - $ref: '#/components/schemas/microsoft.graph.place' - title: section required: - '@odata.type' type: object properties: '@odata.type': type: string default: '#microsoft.graph.section' x-ms-discriminator-value: '#microsoft.graph.section' parameters: top: name: $top in: query description: Show only the first n items style: form explode: false schema: minimum: 0 type: integer example: 50 skip: name: $skip in: query description: Skip the first n items style: form explode: false schema: minimum: 0 type: integer search: name: $search in: query description: Search items by search phrases style: form explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values style: form explode: false schema: type: string count: name: $count in: query description: Include count of items style: form explode: false schema: type: boolean examples: {} responses: error: description: error content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ODataErrors.ODataError' ODataCountResponse: description: The count of the resource content: text/plain: schema: $ref: '#/components/schemas/ODataCountResponse' microsoft.graph.levelMapCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.levelMapCollectionResponse' microsoft.graph.fixtureMapCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fixtureMapCollectionResponse' microsoft.graph.sectionMapCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionMapCollectionResponse' microsoft.graph.unitMapCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.unitMapCollectionResponse' microsoft.graph.roomCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.roomCollectionResponse' microsoft.graph.workspaceCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.workspaceCollectionResponse' microsoft.graph.buildingCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.buildingCollectionResponse' microsoft.graph.deskCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deskCollectionResponse' microsoft.graph.floorCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.floorCollectionResponse' microsoft.graph.roomListCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.roomListCollectionResponse' microsoft.graph.sectionCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionCollectionResponse' tags: - name: places.buildingMap - name: places.checkInClaim - name: Places.place - name: places.place.Functions - name: Places.room - name: Places.workspace