Sign in

Delete project

documented

Delete a project (and associated data).

DELETE /v2/projects/{PROJECT_ID}Projectsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Note: Harvest API v2 is documented at help.getharvest.com and api.harvestapp.com. The DELETE endpoint for a project is DELETE https://api.harvestapp.com/v2/projects/{PROJECT_ID}, with required headers Authorization: Bearer <token> and Harvest-Account-Id. See sources: Harvest API v2 Delete a project. ([help.getharvest.com](https://help.getharvest.com/api-v2/projects-api/projects/projects/?utm_source=openai))
npx -y keychains@latest curl "https://api.harvestapp.com/v2/projects/{{$PROJECT_ID}}" \
  -X DELETE \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Harvest-Account-Id: {{HARVEST_ACCOUNT_ID}}" \
  -H "Accept: application/json"