This endpoint deletes a file corresponding to given fileId by the specified user. The fileId is provided in the path variable. If the fileId is invalid or the file does not exist, an error response will be returned. The response includes status of the deletion operation and detailed message and indicates whether the deletion was successful or not.
HTTP Request
- URL Composition
Base URL: https://api.cloud.precisely.com
Bulk Routing : /v1/li/files/{fileId}
- Supported Methods: DELETE
Request format
https://api.cloud.precisely.com/v1/li/files/{fileId}Request parameters
| Field | Type | Required | Description |
|---|---|---|---|
| fileId | String | Yes | ID of the file to be deleted. |
Example
Request:
https://api.cloud.precisely.com/v1/li/files/54a8b051-6381-4bf8-b88a-d4f7f3fb121aResponse:
{
"status": "SUCCESS",
"message": "File Deleted Successfully"
}