For the complete documentation index, see llms-docs.txt or the site index llms.txt. Full docs corpus: llms-full-docs.txt. Prefer the markdown version of this page at /docs/api/upload/delete-api-upload-v1files-by-file-id.md. Product capabilities: skill.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

Delete an uploaded file

DELETE
/api/upload/v1/files/:fileId
1const response = await fetch("https://reloop.sh/api/upload/v1/files/{fileId}", {
2 method: "DELETE",
3 headers: {
4 "Authorization": "Bearer re_123456789",
5 },
6});
7
8const data = await response.json();
1{
2 "message": "Contact already exists"
3}

Path Parameters

fileIdstringRequired

File ID

  • Minimum length: 1

Was this page helpful?