Example Queries
Updated: May 21, 2026
The following are ready-to-run queries for common Altium 365 API use cases. All examples use the Workspace endpoint and require a valid access token.
Projects
List Projects
query {
desProjects(first: 10) {
nodes {
id
name
description
projectType
updatedAt
}
}
}
Get Project Details
Fetch a specific project by ID, including its design data, latest revision, and collaborators.
query GetProject($id: ID!) {
desProjectById(id: $id) {
id
name
description
projectType
createdAt
updatedAt
design {
releases {
totalCount
}
variants {
name
}
}
latestRevision {
author
createdAt
message
revisionId
}
}
}
Library
Get Library Overview
Returns the Workspace library with component, footprint, and symbol counts.
query GetLibraryOverview{
desLibrary {
name
description
updatedAt
components {
nodes {
id
name
}
}
footprints {
totalCount
}
symbols {
totalCount
}
}
}
Procurement
List BOMs
Returns all managed BOMs in the Workspace with health status and item counts.
query {
bomBoms(first: 5) {
nodes {
bomId
name
createdAt
updatedAt
items {
totalCount
}
releases {
totalCount
nodes {
name
releasedAt
releaseNotes
}
}
issues {
severity
description
howToFix
}
}
}
}
Workspace Team
List Workspace Members
query ListWorkspaceUsers {
desWorkspaceTeamByAuth {
workspaceGroups {
nodes {
id
name
}
}
workspaceUsers {
nodes {
id
displayName
email
}
}
}
}