Skip to main content
curl -X POST https://api.dronebundle.com/v1/projects/01964c6b-7a3e-7f00-8000-abc123def456/archive \
  -H "Authorization: Bearer v1_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "archived": true
  }'
{
  "message": "Project archived"
}
Requires an API key with full_access scope. Archived projects are hidden from the default project list. Use this endpoint to archive a project you no longer need, or to restore a previously archived project.

Path parameters

projectId
string
required
The unique identifier of the project.

Body

archived
boolean
required
Set to true to archive the project, or false to unarchive it.

Response

message
string
Confirmation message.
curl -X POST https://api.dronebundle.com/v1/projects/01964c6b-7a3e-7f00-8000-abc123def456/archive \
  -H "Authorization: Bearer v1_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "archived": true
  }'
{
  "message": "Project archived"
}

Errors

400 Bad Request - Invalid value for archived.
{
  "message": "archived must be a boolean"
}
404 Not Found - Project not found.
{
  "message": "Project not found"
}