For the complete documentation index, see llms.txt. This page is also available as Markdown.

DELETE /admin/tiers/{address}

Reset account tier

Reset account tier.

operationId: deleteTier

Not reachable through CCXT. Operator-only surface. CCXT models a trading client's view of a venue; it has no concept of an exchange's own administration, so there is no unified method to map to.

Authentication: adminAuth.

Remove a tier override, reverting the address to the default Pro tier.

Parameters

Name
In
Type
Required
Default
Description

address

path

string

Yes

Ethereum address (0x-prefixed)

Responses

Status
Body
Meaning

200

(no schema declared)

Tier removed

403

(no schema declared)

Admin secret required

404

(no schema declared)

Address not in allowlist

Example

curl -X DELETE 'https://exchange.nexus.xyz/api/exchange/admin/tiers/{address}' \
  -H 'Authorization: Bearer <token>'
import requests

headers = {
    "Authorization": "Bearer <token>"
}

response = requests.delete("https://exchange.nexus.xyz/api/exchange/admin/tiers/{address}", headers=headers)
response.raise_for_status()
print(response.json())
const response = await fetch("https://exchange.nexus.xyz/api/exchange/admin/tiers/{address}", {
  method: "DELETE",
  headers: {
    "Authorization": "Bearer <token>"
  },
});
if (!response.ok) throw new Error(`${response.status} ${await response.text()}`);
console.log(await response.json());

Generated from eng/apps/exchange/api/openapi.json (spec 0.9.36). Do not edit by hand — regenerate with python3 product/docs/tools/api-reference/generate.py. Hand-authored context lives in the Guides pages.

Last updated