Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create and track a structured finding.
curl -X POST "https://nokia.atlas.arenaphysica.com/api/v1/issues" \ -H "Authorization: Bearer $ATLAS_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "title": "Power rail undervoltage at startup", "status": "open", "priority": "high", "tags": ["power", "startup"] }'
uuid
export ISSUE_ID="<uuid from response>"
status
open
in_progress
resolved
rejected
priority
low
medium
high
tags
PATCH
curl -X PATCH "https://nokia.atlas.arenaphysica.com/api/v1/issues/$ISSUE_ID" \ -H "Authorization: Bearer $ATLAS_TOKEN" \ -H "Content-Type: application/json" \ -d '{"status": "in_progress"}'
curl "https://nokia.atlas.arenaphysica.com/api/v1/issues/$ISSUE_ID" \ -H "Authorization: Bearer $ATLAS_TOKEN"