Remove Entrances from a Space
Removes entrances from a specific space.
Removes entrances from a specific space.
Code:
await seam.spaces.removeAcsEntrances({
space_id: "674e511a-06c6-4734-b4ce-af467496d5fe",
acs_entrance_ids: ["fd859a36-199b-4c2f-894a-24d52621f6a4"],
});Output:
// voidRemoves entrances from a specific space.
Code:
curl --include --request POST "https://connect.getseam.com/spaces/remove_acs_entrances" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"space_id": "674e511a-06c6-4734-b4ce-af467496d5fe",
"acs_entrance_ids": [
"fd859a36-199b-4c2f-894a-24d52621f6a4"
]
}
EOFOutput:
{}Removes entrances from a specific space.
Code:
seam.spaces.remove_acs_entrances(
space_id="674e511a-06c6-4734-b4ce-af467496d5fe",
acs_entrance_ids=["fd859a36-199b-4c2f-894a-24d52621f6a4"],
)Output:
NoneRemoves entrances from a specific space.
Code:
seam.spaces.remove_acs_entrances(
space_id: "674e511a-06c6-4734-b4ce-af467496d5fe",
acs_entrance_ids: ["fd859a36-199b-4c2f-894a-24d52621f6a4"],
)Output:
nilRemoves entrances from a specific space.
Code:
$seam->spaces->remove_acs_entrances(
space_id: "674e511a-06c6-4734-b4ce-af467496d5fe",
acs_entrance_ids: ["fd859a36-199b-4c2f-894a-24d52621f6a4"]
);Output:
Removes entrances from a specific space.
Code:
seam spaces remove-acs-entrances --space_id "674e511a-06c6-4734-b4ce-af467496d5fe" --acs_entrance_ids ["fd859a36-199b-4c2f-894a-24d52621f6a4"]Output:
{}Request Parameters
acs_entrance_ids Array of UUIDs (Required)
IDs of the entrances that you want to remove from the space.
space_id String (Required)
ID of the space from which you want to remove entrances.
Response
void
Last updated
Was this helpful?

