Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove a custom domain registration.
DELETE /v1/domains/:id
Authorization
Bearer <api_key>
id
string
dom_01HXYZ...
curl -X DELETE https://api.grantex.dev/v1/domains/dom_01HXYZ... \ -H "Authorization: Bearer gx_..."
UNAUTHORIZED
NOT_FOUND
import Grantex from '@grantex/sdk'; const grantex = new Grantex({ apiKey: 'gx_...' }); await grantex.domains.delete('dom_01HXYZ...');
from grantex import Grantex grantex = Grantex(api_key="gx_...") grantex.domains.delete("dom_01HXYZ...")