Documentation Index
Fetch the complete documentation index at: https://docs.anduril.atlas.arenaphysica.com/llms.txt
Use this file to discover all available pages before exploring further.
1. Create an issue
curl -X POST "$ATLAS_URL/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"]
}'
Save the uuid from the response:
export ISSUE_ID="<uuid from response>"
Field reference:
| Field | Values |
|---|
status | open, in_progress, resolved, rejected |
priority | low, medium, high |
tags | Any list of strings |
2. Update the issue
Use PATCH to update any field:
curl -X PATCH "$ATLAS_URL/api/v1/issues/$ISSUE_ID" \
-H "Authorization: Bearer $ATLAS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"status": "in_progress"}'
3. Fetch the issue
curl "$ATLAS_URL/api/v1/issues/$ISSUE_ID" \
-H "Authorization: Bearer $ATLAS_TOKEN"