Delete Asset
DELETE
https://api.konpro.ai/v1/asset/{asset_id}Permanently remove a media asset from your account by specifying its unique asset ID.
Request History
Log in to see full request history
| TIME | STATUS | USER AGENT |
|---|---|---|
| Make a request to see history. | ||
0 Requests This Month
cURL Request
shell
curl --request DELETE \
--url https://api.konpro.ai/v1/asset/<asset_id> \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'Path Parameter
| Parameter | Type | Description |
|---|---|---|
| asset_id | string | Unique identifier of the asset to delete (required) |
Response
Response Structure
Confirms successful deletion of the asset.
Provides error details if the deletion fails.
Sample Response
json
{
"asset_id": "asset_123456",
"status": "deleted",
"message": "Asset successfully deleted",
"deleted_at": "2024-01-15T10:30:00Z"
}Notes
- Requires API authentication.
- Permanently removes the asset from your account.
- This action cannot be undone.
- Asset ID must be valid and belong to your account.
- Returns confirmation of successful deletion.
- Use with caution as deletion is irreversible.
- Refer to Error Responses for error information.
Example Usage
Shell
curl --request DELETE \
--url https://api.konpro.ai/v1/asset/<asset_id> \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'LANGUAGE
CREDENTIALS
HEADER
RESPONSE
Examples
Choose an example:
application/json
200 - Success
404 - Not Found
LANGUAGE
CREDENTIALS
HEADER
RESPONSE
Examples
Choose an example:
application/json
200 - Success
404 - Not Found