Add Entrances to 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.

Adds entrances to a specific space.

Adds entrances to a specific space.

Code

await seam.spaces.addAcsEntrances({
  space_id: "9f930664-c0d8-441b-8d66-2b1d0d2466f4",
  acs_entrance_ids: ["b127a710-db3e-402c-afdf-5474769b1d83"],
});

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

acs_entrance_ids Array of UUIDs (Required)

IDs of the entrances that you want to add to the space.


space_id String (Required)

ID of the space to which you want to add entrances.


Response

void

Last updated

Was this helpful?