Skip to main content
DELETE
/
core
/
v1
/
urlforwarding
/
{domainName}
/
{id}
Delete URL Forwarding by ID
curl --request DELETE \
  --url https://api.dev.name.com/core/v1/urlforwarding/{domainName}/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "message": "Unauthorized"
}

Authorizations

Authorization
string
header
required

Authenticate via HTTP Basic with your account username and API token. Examples use an explicit 'Authorization: Basic <base64(username:token)>' header; 'curl -u username:token' is equivalent. For sandbox, append "-test" to your username and use your sandbox token on api.dev.name.com.

Path Parameters

domainName
string<hostname>
required

DomainName is the domain that owns the URL forwarding entry. Must be owned by the authenticated account.

Example:

"example.com"

id
integer<int32>
required

ID is the server-assigned unique identifier for the URL forwarding record (returned in list responses).

Example:

12345

Response

URL Forwarding entry successfully deleted.