Remove Devices from a Space

Early Access Preview. The spaces API is currently in Alpha. We're actively developing it and seeking early feedback at [email protected]. Expect breaking changes as we refine the design.

Removes devices from a specific space.

Removes devices from a specific space.

Code

await seam.spaces.removeDevices({
  space_id: "6df14344-4114-4d74-9ef4-2e1208378cda",
  device_ids: ["011460e9-9605-46a5-91f1-6b2a442b70fd"],
});

Output

// void
Authentication Methods
  • API key

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

Request Parameters

device_ids Array of UUIDs (Required)

IDs of the devices that you want to remove from the space.


space_id String (Required)

ID of the space from which you want to remove devices.


Response

void

Last updated

Was this helpful?