cURL
curl --request POST \ --url https://api.velt.dev/v1/workspace/domains/delete \ --header 'Content-Type: application/json' \ --header 'x-velt-api-key: <x-velt-api-key>' \ --header 'x-velt-auth-token: <x-velt-auth-token>' \ --data '{ "data": { "domains": [ "<string>" ] } }'
{ "result": { "status": "success", "message": "Domain(s) removed successfully from allowed domains.", "data": { "domainsRemoved": [ "google.com", "*.firebase.com" ] } } }
POST https://api.velt.dev/v1/workspace/domains/delete
Show properties
{ "data": { "domains" : [ "https://www.google.com", "https://*.firebase.com" ] } }
{ "error": { "details": { "domainsRemoved": [ "velt.dev" ], "skippedDomains": [ "google.com" ] }, "message": "Domain(s) removed successfully from allowed domains. Skipped non-existing domains.", "status": "INTERNAL" } }
Was this page helpful?