Skip to main content
Issue details view

1. Create an issue

curl -X POST "https://spacex.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"]
  }'
Save the uuid from the response:
export ISSUE_ID="<uuid from response>"
Field reference:
FieldValues
statusopen, in_progress, resolved, rejected
prioritylow, medium, high
tagsAny list of strings

2. Update the issue

Use PATCH to update any field:
curl -X PATCH "https://spacex.atlas.arenaphysica.com/api/v1/issues/$ISSUE_ID" \
  -H "Authorization: Bearer $ATLAS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"status": "in_progress"}'

3. Fetch the issue

curl "https://spacex.atlas.arenaphysica.com/api/v1/issues/$ISSUE_ID" \
  -H "Authorization: Bearer $ATLAS_TOKEN"