Delete LTX Studio API account configuration
June 3, 2025
Table of contents
This endpoint deletes a specific LTX Studio account configuration by email address.
https://api.useapi.net/v1/ltxstudio/accounts/
Request Headers
Authorization: Bearer {API token}
API token
is required, see Setup useapi.net for details.
Path Parameters
email
is required, specify the email address of the LTX Studio account to delete
Responses
-
Account configuration deleted successfully.
-
{ "error": "Unauthorized", "code": 401 }
-
Account configuration not found for the specified email address.
Examples
-
curl -X DELETE https://api.useapi.net/v1/ltxstudio/accounts/[email protected] \ -H "Accept: application/json" \ -H "Authorization: Bearer …"
-
const token = "API token"; const email = "[email protected]"; const apiUrl = `https://api.useapi.net/v1/ltxstudio/accounts/${email}`; const response = await fetch(apiUrl, { method: "DELETE", headers: { "Authorization": `Bearer ${token}`, }, }); console.log("response", {response});
-
import requests token = "API token" email = "[email protected]" apiUrl = f"https://api.useapi.net/v1/ltxstudio/accounts/{email}" headers = { "Authorization" : f"Bearer {token}" } response = requests.delete(apiUrl, headers=headers) print(response)