Skip to main content
POST
/
workspace
/
domains
/
delete
Delete Domains
curl --request POST \
  --url https://api.velt.dev/v2/workspace/domains/delete \
  --header 'Content-Type: application/json' \
  --header 'x-velt-api-key: <api-key>' \
  --header 'x-velt-auth-token: <api-key>' \
  --data '{
  "data": {
    "domains": [
      "https://www.google.com",
      "https://*.firebase.com"
    ]
  }
}'
{
  "result": {
    "status": "success",
    "message": "Operation completed successfully",
    "data": {}
  }
}

Authorizations

x-velt-api-key
string
header
required

Your API key from the Velt Console

x-velt-auth-token
string
header
required

Your Auth Token for authentication

Body

application/json
data
object
required

Response

Domains deleted successfully

result
object