For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Sign upLog in
Developer GuideCore ConceptsAPI Reference
    • Overview
    • Organizations
    • Landscapes
    • Versions
    • Domains
    • Model Objects
    • Model Connections
    • Diagrams
    • Flows
LogoLogo
Sign upLog in
On this page
  • What a domain is
  • Creating domains
  • Filtering model objects by domain
  • Related concepts

Domains

Was this page helpful?
Previous

Model Objects

Next
Built with

Domains are named groupings that organise model objects into bounded contexts. They map closely to the Domain-Driven Design (DDD).


What a domain is

Every model object in a version belongs to exactly one domain. Domains provide a way to segment a large architecture either by business unit (e.g., Payments) or by team ownership (e.g., platform).


Creating domains

Create a domain in a version:

POST
/v1/landscapes/:landscapeId/versions/:versionId/domains
1curl -X POST https://api.icepanel.io/v1/landscapes/landscapeId/versions/versionId/domains \
2 -H "X-API-Key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "name": "string"
6}'
Try it

Filtering model objects by domain

Use the GET endpoint with query parameter ?filter[domainId]={domainId} to filter objects.

GET
/v1/landscapes/:landscapeId/versions/:versionId/model/objects
1curl https://api.icepanel.io/v1/landscapes/landscapeId/versions/versionId/model/objects \
2 -H "X-API-Key: <apiKey>"
Try it

This is useful for extracting a bounded-context slice of the architecture for reports or external tools.


Related concepts

  • Model Objects
  • Model Connections