Skip to main content

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.

Project files view

1. Create the project

Start by creating the project shell. This gives you a project_id you’ll use to attach files in the next step.
curl -X POST "$ATLAS_URL/api/v1/projects" \
  -H "Authorization: Bearer $ATLAS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "IMU Sensor",
    "description": "Inertial measurement unit reference design"
  }'
Save the project_id from the response:
export PROJECT_ID="<project_id from response>"
Field reference:
FieldRequiredDescription
titleYesDisplay name for the project
descriptionNoFree-text description
system_uuidNoLink the project to an existing system
group_idsNoScope the project to specific groups
metadataNoFree-form JSON metadata

2. Add files to the project

Register the design files that belong to this project — schematics, BOMs, netlists, design docs, telemetry. Each file must already be in S3. Provide its S3 URL and Atlas registers it as a file object on the project.
curl -X POST "$ATLAS_URL/api/v1/projects/$PROJECT_ID/upload_file" \
  -H "Authorization: Bearer $ATLAS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "s3_uri": "s3://your-bucket/imu-sensor/Schematic.PDF"
  }'
Repeat the request for each file you want to attach.