Autenticação: Obrigatória — JWT via
Authorization: Bearer <access_token>.Requisição
Não aplicável — o endpoint está desabilitado.Resposta
Sempre405 Method Not Allowed:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A remoção de planos de taxa não é exposta por esta API.
DELETE /plans/plans/zoop/{id}/Authorization: Bearer <access_token>.DELETE para /plans/plans/zoop/{id}/ sempre retornam 405 Method Not Allowed. Os planos de taxa são mantidos centralmente; o espelho local não pode ser removido por esta API.405 Method Not Allowed:
{
"detail": "Method \"DELETE\" not allowed."
}
| Status | Quando |
|---|---|
401 | Cabeçalho Authorization ausente ou inválido. |
405 | Sempre — DELETE não é aceito nesta rota. |
curl -X DELETE https://api.dlpay.cloud/plans/plans/zoop/6a3a5b1e-7c2a-4b6f-9a3e-2c1d8e4f1b22/ \
-H "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJh..."
import requests
response = requests.delete(
"https://api.dlpay.cloud/plans/plans/zoop/6a3a5b1e-7c2a-4b6f-9a3e-2c1d8e4f1b22/",
headers={"Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJh..."},
)
const response = await fetch(
"https://api.dlpay.cloud/plans/plans/zoop/6a3a5b1e-7c2a-4b6f-9a3e-2c1d8e4f1b22/",
{
method: "DELETE",
headers: { Authorization: "Bearer eyJ0eXAiOiJKV1QiLCJh..." },
}
);