Transcrippets™
Delete Transcrippet™
Delete an existing Transcrippet™
POST /transcrippets/{transcrippet_id}/delete
Parameter | Type | DataType | Description |
---|---|---|---|
transcrippet_id | path | integer | ID of the Transcrippet™ to delete |
Response
{
"success": true
}
Code Samples
Note: If you're copying any of the code, make sure to replace "your-rest-api-key" with your actual api key.
Bash
curl --request POST \
--url 'https://premium.aiera.com/api/transcrippets/123456789/delete' \
--header 'X-API-Key: your-rest-api-key'
Python
import requests
requests.post(
"https://premium.aiera.com/api/transcrippets/123456789/delete",
headers={"X-API-Key": "your-rest-api-key"}
)