altium-365
Installation
SKILL.md
Troubleshooting
If requests fail, run zero doctor check-connector --env-name ALTIUM365_TOKEN or zero doctor check-connector --url $ALTIUM365_WORKSPACE_URL/rest/projects --method GET
How to Use
All examples assume ALTIUM365_TOKEN (Personal User Token) and ALTIUM365_WORKSPACE_URL (e.g. https://acme.365.altium.com) are set. Altium 365 uses Bearer authentication on the Requirements & Systems Portal REST API.
Base URL: $ALTIUM365_WORKSPACE_URL/rest
The workspace URL is specific to your Altium 365 deployment — find it in the address bar of the Requirements & Systems Portal. User tokens are valid for three months from creation.
1. Verify the Token
Pull the project list as a connectivity sanity check:
curl -s "$ALTIUM365_WORKSPACE_URL/rest/projects?limit=1" --header "Authorization: Bearer $ALTIUM365_TOKEN" --header "Accept: application/json"