productivity
Microsoft Places Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the Microsoft Places KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.microsoft_places.*.
Use lua_read_doc("integrations.microsoft-places") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
Microsoft Places workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.microsoft_places.create({top = "example_top", skip = "example_skip", search = "example_search", filter = "example_filter", orderby = "example_orderby", select = "example_select", expand = "example_expand", count = true}))' --json kosmo integrations:lua --eval 'print(docs.read("microsoft-places"))' --json
kosmo integrations:lua --eval 'print(docs.read("microsoft-places.create"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local microsoft_places = app.integrations.microsoft_places
local result = microsoft_places.create({top = "example_top", skip = "example_skip", search = "example_search", filter = "example_filter", orderby = "example_orderby", select = "example_select", expand = "example_expand", count = true})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.microsoft_places, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.microsoft_places.default.* or app.integrations.microsoft_places.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need Microsoft Places, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
Microsoft Places
Namespace: microsoft-places
This integration exposes Microsoft Places operations from Microsoft Graph v1.0 for agents that need to inspect or manage rooms, room lists, workspaces, desks, buildings, floors, sections, maps, and check-ins.
Source Coverage
- Source OpenAPI:
https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/openapi.yaml - Documentation:
https://learn.microsoft.com/en-us/graph/api/resources/place?view=graph-rest-1.0 - Generated operations:
131 - Included path families:
/places
Authentication
Configure access_token with a Microsoft Graph OAuth token. Use least-privilege permissions for the operation being called, such as Place.Read.All, Place.ReadWrite.All, or related Microsoft Graph scopes.
Usage Notes
- Tool parameters use snake_case. For example, Graph path parameter
user-idbecomesuser_id. - OData options are exposed as
top,skip,search,filter,orderby,select,expand, andcount. - Advanced queries may require
consistency_level = "eventual"and may also requirecount = true. - Conditional update and delete operations can pass
if_matchfor the Microsoft GraphIf-Matchheader. - Request bodies are passed as
bodyobjects and should match the official Microsoft Graph schema for the endpoint.
Example
local rooms = tools.microsoft_places_places_list_graph_room({
top = 10,
select = "id,displayName,emailAddress",
consistency_level = "eventual"
})Raw agent markdown
# Microsoft Places
Namespace: `microsoft-places`
This integration exposes Microsoft Places operations from Microsoft Graph v1.0 for agents that need to inspect or manage rooms, room lists, workspaces, desks, buildings, floors, sections, maps, and check-ins.
## Source Coverage
- Source OpenAPI: `https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/openapi.yaml`
- Documentation: `https://learn.microsoft.com/en-us/graph/api/resources/place?view=graph-rest-1.0`
- Generated operations: `131`
- Included path families: `/places`
## Authentication
Configure `access_token` with a Microsoft Graph OAuth token. Use least-privilege permissions for the operation being called, such as `Place.Read.All`, `Place.ReadWrite.All`, or related Microsoft Graph scopes.
## Usage Notes
- Tool parameters use snake_case. For example, Graph path parameter `user-id` becomes `user_id`.
- OData options are exposed as `top`, `skip`, `search`, `filter`, `orderby`, `select`, `expand`, and `count`.
- Advanced queries may require `consistency_level = "eventual"` and may also require `count = true`.
- Conditional update and delete operations can pass `if_match` for the Microsoft Graph `If-Match` header.
- Request bodies are passed as `body` objects and should match the official Microsoft Graph schema for the endpoint.
## Example
```lua
local rooms = tools.microsoft_places_places_list_graph_room({
top = 10,
select = "id,displayName,emailAddress",
consistency_level = "eventual"
})
``` local result = app.integrations.microsoft_places.create({top = "example_top", skip = "example_skip", search = "example_search", filter = "example_filter", orderby = "example_orderby", select = "example_select", expand = "example_expand", count = true})
print(result) Functions
create Write
Create place\n\nOfficial Microsoft Graph v1.0 endpoint: POST /places.
- Lua path
app.integrations.microsoft_places.create- Full name
microsoft-places.microsoft_places_places_place_create_place
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_get_count_f02b
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.building.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_list_place_as_building
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.building/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_place_place_get_count_as_building_9b72
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.desk.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_list_place_as_desk
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.desk/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_place_place_get_count_as_desk_6f90
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.floor.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_list_place_as_floor
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.floor/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_place_place_get_count_as_floor_2f1e
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.room.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_list_place_as_room
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.room/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_place_place_get_count_as_room_56fc
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get Read
Get place\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.roomList.
- Lua path
app.integrations.microsoft_places.get- Full name
microsoft-places.microsoft_places_places_place_list_place_as_room_list
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.roomList/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_place_place_get_count_as_room_list_e9fd
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.section.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_list_place_as_section
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.section/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_place_place_get_count_as_section_95fa
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.workspace.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_list_place_as_workspace
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/graph.workspace/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_place_place_get_count_as_workspace_7f2e
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete Write
Delete place\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /places/{place-id}.
- Lua path
app.integrations.microsoft_places.delete- Full name
microsoft-places.microsoft_places_places_place_delete_place
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update Write
Update place\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /places/{place-id}.
- Lua path
app.integrations.microsoft_places.update- Full name
microsoft-places.microsoft_places_places_place_update_place
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_checkinclaim Read
Get checkInClaim\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkinclaim- Full name
microsoft-places.microsoft_places_places_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_checkinclaim Write
Create checkInClaim\n\nOfficial Microsoft Graph v1.0 endpoint: POST /places/{place-id}/checkIns.
- Lua path
app.integrations.microsoft_places.create_checkinclaim- Full name
microsoft-places.microsoft_places_places_create_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_check_ins_get_count_2709
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkinclaim Read
Get checkInClaim\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkinclaim- Full name
microsoft-places.microsoft_places_places_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_descendants Read
Invoke function descendants\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/descendants().
- Lua path
app.integrations.microsoft_places.invoke_function_descendants- Full name
microsoft-places.microsoft_places_places_place_descendants
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_get_place_as_building
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_building_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_building_check_ins_get_count_114f
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_building_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_buildingmap Write
Delete buildingMap\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /places/{place-id}/graph.building/map.
- Lua path
app.integrations.microsoft_places.delete_buildingmap- Full name
microsoft-places.microsoft_places_places_as_building_delete_map
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_buildingmap Read
Get buildingMap\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map.
- Lua path
app.integrations.microsoft_places.get_buildingmap- Full name
microsoft-places.microsoft_places_places_as_building_get_map
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_footprints Read
List footprints\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/footprints.
- Lua path
app.integrations.microsoft_places.list_footprints- Full name
microsoft-places.microsoft_places_places_as_building_map_list_footprints
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/footprints/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_building_map_footprints_get_count_273d
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_footprints_from Read
Get footprints from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/footprints/{footprintMap-id}.
- Lua path
app.integrations.microsoft_places.get_footprints_from- Full name
microsoft-places.microsoft_places_places_as_building_map_get_footprints
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
footprint_map_id | string | yes | Path parameter `footprintMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_levels Read
List levels\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels.
- Lua path
app.integrations.microsoft_places.list_levels- Full name
microsoft-places.microsoft_places_places_as_building_map_list_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_get_count_292f
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_levels_from Read
Get levels from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}.
- Lua path
app.integrations.microsoft_places.get_levels_from- Full name
microsoft-places.microsoft_places_places_as_building_map_get_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_fixtures Read
List fixtures\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures.
- Lua path
app.integrations.microsoft_places.list_fixtures- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_list_fixtures
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_fixtures_get_count_85dd
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_fixturemap Write
Delete fixtureMap\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures/{fixtureMap-id}.
- Lua path
app.integrations.microsoft_places.delete_fixturemap- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_delete_fixtures
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
fixture_map_id | string | yes | Path parameter `fixtureMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_fixtures_from Read
Get fixtures from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures/{fixtureMap-id}.
- Lua path
app.integrations.microsoft_places.get_fixtures_from- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_get_fixtures
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
fixture_map_id | string | yes | Path parameter `fixtureMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_fixturemap Write
Update fixtureMap\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /places/{place-id}/graph.building/map/levels/{levelMap-id}/fixtures/{fixtureMap-id}.
- Lua path
app.integrations.microsoft_places.update_fixturemap- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_update_fixtures
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
fixture_map_id | string | yes | Path parameter `fixtureMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
list_sections Read
List sections\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/sections.
- Lua path
app.integrations.microsoft_places.list_sections- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_list_sections
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/sections/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_sections_get_count_bdac
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_sections_from Read
Get sections from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/sections/{sectionMap-id}.
- Lua path
app.integrations.microsoft_places.get_sections_from- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_get_sections
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
section_map_id | string | yes | Path parameter `sectionMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_units Read
List units\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/units.
- Lua path
app.integrations.microsoft_places.list_units- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_list_units
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/units/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_units_get_count_3fc3
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_unitmap Write
Delete unitMap\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /places/{place-id}/graph.building/map/levels/{levelMap-id}/units/{unitMap-id}.
- Lua path
app.integrations.microsoft_places.delete_unitmap- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_delete_units
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
unit_map_id | string | yes | Path parameter `unitMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_units_from Read
Get units from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.building/map/levels/{levelMap-id}/units/{unitMap-id}.
- Lua path
app.integrations.microsoft_places.get_units_from- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_get_units
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
unit_map_id | string | yes | Path parameter `unitMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_unitmap Write
Update unitMap\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /places/{place-id}/graph.building/map/levels/{levelMap-id}/units/{unitMap-id}.
- Lua path
app.integrations.microsoft_places.update_unitmap- Full name
microsoft-places.microsoft_places_places_as_building_map_levels_update_units
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
level_map_id | string | yes | Path parameter `levelMap-id`. |
unit_map_id | string | yes | Path parameter `unitMap-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.desk.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_get_place_as_desk
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.desk/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_desk_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.desk/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_desk_check_ins_get_count_fd8b
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.desk/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_desk_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.floor.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_get_place_as_floor
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.floor/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_floor_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.floor/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_floor_check_ins_get_count_e279
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.floor/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_floor_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.room.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_get_place_as_room
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.room/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.room/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_room_check_ins_get_count_9b19
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.room/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get Read
Get place\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList.
- Lua path
app.integrations.microsoft_places.get- Full name
microsoft-places.microsoft_places_places_place_get_place_as_room_list
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_list_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_room_list_check_ins_get_count_e70f
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_list_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_rooms_from Read
Get rooms from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/rooms.
- Lua path
app.integrations.microsoft_places.get_rooms_from- Full name
microsoft-places.microsoft_places_places_as_room_list_list_rooms
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/rooms/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_room_list_rooms_get_count_b534
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_rooms_from Read
Get rooms from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/rooms/{room-id}.
- Lua path
app.integrations.microsoft_places.get_rooms_from- Full name
microsoft-places.microsoft_places_places_as_room_list_get_rooms
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
room_id | string | yes | Path parameter `room-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_list_rooms_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
room_id | string | yes | Path parameter `room-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_room_list_rooms_check_ins_get_count_28dc
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
room_id | string | yes | Path parameter `room-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/rooms/{room-id}/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_list_rooms_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
room_id | string | yes | Path parameter `room-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_workspaces_from Read
Get workspaces from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/workspaces.
- Lua path
app.integrations.microsoft_places.get_workspaces_from- Full name
microsoft-places.microsoft_places_places_as_room_list_list_workspaces
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/workspaces/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_room_list_workspaces_get_count_4b94
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_workspaces_from Read
Get workspaces from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/workspaces/{workspace-id}.
- Lua path
app.integrations.microsoft_places.get_workspaces_from- Full name
microsoft-places.microsoft_places_places_as_room_list_get_workspaces
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
workspace_id | string | yes | Path parameter `workspace-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_list_workspaces_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
workspace_id | string | yes | Path parameter `workspace-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_room_list_workspaces_check_ins_get_count_8c5e
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
workspace_id | string | yes | Path parameter `workspace-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.roomList/workspaces/{workspace-id}/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_room_list_workspaces_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
workspace_id | string | yes | Path parameter `workspace-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.section.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_get_place_as_section
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.section/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_section_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.section/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_section_check_ins_get_count_4bba
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.section/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_section_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_objects Read
List place objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.workspace.
- Lua path
app.integrations.microsoft_places.list_objects- Full name
microsoft-places.microsoft_places_places_place_get_place_as_workspace
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.workspace/checkIns.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_workspace_list_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.workspace/checkIns/$count.
- Lua path
app.integrations.microsoft_places.get_number_resource- Full name
microsoft-places.microsoft_places_places_as_workspace_check_ins_get_count_d022
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_checkins_from Read
Get checkIns from places\n\nOfficial Microsoft Graph v1.0 endpoint: GET /places/{place-id}/graph.workspace/checkIns/{checkInClaim-calendarEventId}.
- Lua path
app.integrations.microsoft_places.get_checkins_from- Full name
microsoft-places.microsoft_places_places_as_workspace_get_check_ins
| Parameter | Type | Required | Description |
|---|---|---|---|
place_id | string | yes | Path parameter `place-id`. |
check_in_claim_calendar_event_id | string | yes | Path parameter `checkInClaim-calendarEventId`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |