---
title: "Get layer components"
method: POST
path: "/clouddiagrams/v1/statussheet/{id}/get"
tags: ["Cloud Diagrams"]
---

# Get layer components

`POST /clouddiagrams/v1/statussheet/{id}/get`

Returns the specified components of a diagram layer. Provide at least one component
type with one or more IDs in the request body (for example, `node` or `element`).

## Path parameters

- `id` string, required

## Query parameters

- `p` string

## Request body

- CloudDiagramStatussheetGetRequest — Request body for getting layer components. At least one component type must be provided with one or more IDs.
  - `node` string[] — Node IDs to fetch.
  - `element` string[] — Element IDs to fetch.
  - `link` string[] — Link IDs to fetch.
  - `group` string[] — Group IDs to fetch.
  - `attachment` string[] — Attachment IDs to fetch.
  - `note` string[] — Note IDs to fetch.
  - `combiner` string[] — Combiner IDs to fetch.

## Response `200`

OK - Layer components returned.

- CloudDiagramStatussheetComponents — Component collections of a diagram layer, keyed by component ID.
  - `node` object — Map of node ID to node component.
  - `element` object — Map of element ID to element component.
  - `group` object — Map of group ID to group component.
  - `link` object — Map of link ID to link component.
  - `attachment` object — Map of attachment ID to attachment component.
  - `combiner` object — Map of combiner ID to combiner component.
  - `note` object — Map of note ID to note component.

## Other responses

- `400` — Bad Request - The server cannot process the request, often due to a malformed request.
- `401` — Unauthorized - Invalid API key.
- `403` — Forbidden - Either the resource does not exist, or the caller is not authorized to access it. These two cases are deliberately indistinguishable to avoid information disclosure: the access guard runs before any existence check, so callers receive 403 (not 404) for unknown IDs on this endpoint. Used by Cloud Diagrams routes keyed by a path-param resource id (e.g. `/clouddiagrams/v1/statussheet/{id}/...`).

---

[API](https://skmtc.dev/doit/apis/doit-cloud-intelligence.md) · [All operations](https://skmtc.dev/doit/apis/doit-cloud-intelligence/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/doit/doit-cloud-intelligence/revisions/9416402fc119/schema)
