Autenticação: Obrigatória — JWT via
Authorization: Bearer <access_token>.PUT /plans/plans/split/{id}/.
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 atualização de planos de taxa não é exposta por esta API.
PUT /plans/plans/zoop/{id}/Authorization: Bearer <access_token>.PUT (e PATCH) para /plans/plans/zoop/{id}/ sempre retornam 405 Method Not Allowed. As tabelas de tarifas são mantidas centralmente e atualizadas localmente por rotinas de sincronização — não há endpoint público para edição.PUT /plans/plans/split/{id}/.
405 Method Not Allowed:
{
"detail": "Method \"PUT\" not allowed."
}
| Status | Quando |
|---|---|
401 | Cabeçalho Authorization ausente ou inválido. |
405 | Sempre — nem PUT nem PATCH são aceitos nesta rota. |
curl -X PUT https://api.dlpay.cloud/plans/plans/zoop/6a3a5b1e-7c2a-4b6f-9a3e-2c1d8e4f1b22/ \
-H "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJh..." \
-H "Content-Type: application/json" \
-d '{}'
import requests
response = requests.put(
"https://api.dlpay.cloud/plans/plans/zoop/6a3a5b1e-7c2a-4b6f-9a3e-2c1d8e4f1b22/",
headers={"Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJh..."},
json={},
)
const response = await fetch(
"https://api.dlpay.cloud/plans/plans/zoop/6a3a5b1e-7c2a-4b6f-9a3e-2c1d8e4f1b22/",
{
method: "PUT",
headers: {
Authorization: "Bearer eyJ0eXAiOiJKV1QiLCJh...",
"Content-Type": "application/json",
},
body: "{}",
}
);