Skip to main content
GET
/
shadingscenes
/
{scene_id}
Get Shading Scene
curl --request GET \
  --url https://api.example.com/shadingscenes/{scene_id}

GET /shadingscenes/

Fetch a single shading scene by its workspace-scoped ID, including the full scene geometry JSON. Optional legacy query flags can attach shading results and model payloads inline.

Notes

  • scene_id is the workspace-scoped integer identifier for the shading scene.
  • The response includes the complete sceneJson geometry payload, unlike the list endpoint which omits it.
  • Legacy query parameters are available for backward compatibility:
    • returnshading — attach aggregated shading factors by sun position.
    • returntableshading — attach per-table shading factors grouped by table index.
    • returnmodel — attach the historical Daly-compatible model payload with tracker parameter reference.
  • All legacy flags default to false. When omitted, the response contains only the core scene record.
  • Returns 404 if the scene does not exist in the current workspace.
  • See GET /shadingscenes//results for the dedicated results endpoint with richer status metadata.