Files
Bulk delete all file-related data across collections by file IDs and workspace ID
delete
/files/bulk-delete-by-domain
Authorizations
Query parameters
wkspIdstringRequired
Workspace ID
Body
filesstring[]RequiredExample:
["fileId123","fileId456"]
Responses
200
Files and associated data deleted successfully
application/json
401
Unauthorized access
application/json
500
Internal server error occurred during deletion
application/json
delete
/files/bulk-delete-by-domainDELETE /files/bulk-delete-by-domain?wkspId=text HTTP/1.1
Host: api-dev.jsmon.sh
Content-Type: application/json
Accept: */*
Content-Length: 35
{
"files": [
"fileId123",
"fileId456"
]
}
{
"message": "Deleted Successfully!!"
}