## Delete an attachment **delete** `/v3/attachments/{attachmentId}` Permanently delete an attachment owned by the authenticated partner. ### Path Parameters - `attachmentId: string` ### Example ```http curl https://api.linqapp.com/api/partner/v3/attachments/$ATTACHMENT_ID \ -X DELETE \ -H "Authorization: Bearer $LINQ_API_V3_API_KEY" ``` #### Response ```json { "error": { "status": 401, "code": 2004, "message": "Unauthorized - missing or invalid authentication token", "doc_url": "https://docs.linqapp.com/error/codes/2xxx/2004/" }, "success": false } ```