API DocsRESTRemote file service

BatchDeleteRemoteFiles

Batch delete remote files. Each batch is limited to 1000 records.

POST
/api/v1/remote-files:batchDelete

Request Body

application/jsonRequired

The request for a call to RemoteFileService_BatchDeleteRemoteFiles to delete remote files.

remoteFileIdsarray<string>

Up to 1000 remote file IDs can be provided per request.

curl -X POST "<API_URL>/api/v1/remote-files:batchDelete" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "remoteFileIds": [
      "string"
    ]
  }'

A successful response.

{}