Get a Space
Gets a space.
Returns a specified space.
Code:
await seam.spaces.get({ space_id: "5f30970d-6ef5-4618-9e91-e701fbca6b63" });Output:
{
"created_at": "2025-06-16T16:54:17.946600Z",
"display_name": "My Space",
"name": "My Space",
"space_id": "5f30970d-6ef5-4618-9e91-e701fbca6b63",
"workspace_id": "96bd12f9-6def-4bf4-b517-760417451ae9"
}Returns a specified space.
Code:
curl --include --request POST "https://connect.getseam.com/spaces/get" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"space_id": "5f30970d-6ef5-4618-9e91-e701fbca6b63"
}
EOFOutput:
{
"space": {
"created_at": "2025-06-16T16:54:17.946600Z",
"display_name": "My Space",
"name": "My Space",
"space_id": "5f30970d-6ef5-4618-9e91-e701fbca6b63",
"workspace_id": "96bd12f9-6def-4bf4-b517-760417451ae9"
}
}Returns a specified space.
Code:
seam.spaces.get(space_id="5f30970d-6ef5-4618-9e91-e701fbca6b63")Output:
Space(
created_at="2025-06-16T16:54:17.946600Z",
display_name="My Space",
name="My Space",
space_id="5f30970d-6ef5-4618-9e91-e701fbca6b63",
workspace_id="96bd12f9-6def-4bf4-b517-760417451ae9",
)Returns a specified space.
Code:
seam.spaces.get(space_id: "5f30970d-6ef5-4618-9e91-e701fbca6b63")Output:
{
"created_at" => "2025-06-16T16:54:17.946600Z",
"display_name" => "My Space",
"name" => "My Space",
"space_id" => "5f30970d-6ef5-4618-9e91-e701fbca6b63",
"workspace_id" => "96bd12f9-6def-4bf4-b517-760417451ae9",
}Returns a specified space.
Code:
$seam->spaces->get(space_id: "5f30970d-6ef5-4618-9e91-e701fbca6b63");Output:
[
"created_at" => "2025-06-16T16:54:17.946600Z",
"display_name" => "My Space",
"name" => "My Space",
"space_id" => "5f30970d-6ef5-4618-9e91-e701fbca6b63",
"workspace_id" => "96bd12f9-6def-4bf4-b517-760417451ae9",
];Returns a specified space.
Code:
seam spaces get --space_id "5f30970d-6ef5-4618-9e91-e701fbca6b63"Output:
{
"created_at": "2025-06-16T16:54:17.946600Z",
"display_name": "My Space",
"name": "My Space",
"space_id": "5f30970d-6ef5-4618-9e91-e701fbca6b63",
"workspace_id": "96bd12f9-6def-4bf4-b517-760417451ae9"
}Request Parameters
space_id String
ID of the space that you want to get.
space_key String
Unique key of the space that you want to get.
Response
{
"created_at": "2025-06-16T16:54:17.946600Z",
"display_name": "My Space",
"name": "My Space",
"space_id": "5afeb047-3277-4102-b8c4-99edf05b91d2",
"workspace_id": "96bd12f9-6def-4bf4-b517-760417451ae9"
}Last updated
Was this helpful?

