> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voyantcloud.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Archive a Form

> Archives a form by its ID, effectively deleting it.

### DELETE /v1/forms/:id

Archives a form, which is a soft delete. The form will no longer be accessible via the API for retrieval or submissions.

#### Path Parameters

<ParamField name="id" type="string" required>
  The ID of the form to archive.
</ParamField>

#### Example Request

```bash theme={null}
curl -X DELETE "https://api.example.com/v1/forms/form_123" \
     -H "Authorization: Bearer <YOUR_API_KEY>"
```

#### Example Response

```json theme={null}
{
  "success": true
}
```
