Delete a link
A branded short link can be deleted from your collection and it will suddenly stop redirecting.
In order to delete it, you are supposed to send a DELETE request to its API URL: https://app.linksgpt.com/api/v1/links/{id}
, where {id} is the unique identifier of the branded short link.
If you don't know a link's id, you can fetch it by getting the List your links.
REQUEST EXAMPLE
cURL
curl 'https://app.linksgpt.com/api/v1/links/1678662715674986986' \
-X DELETE \
-H 'apikey: YOUR_API_KEY' \
-H 'Accept: application/json' \
-H 'Accept-Language: en'
PATH PARAMETERS
Parameter | Constraints | Description |
---|---|---|
id | required | Unique identifier of the branded short link you want to delete. |
QUERY PARAMETERS
Parameter | Constraints | Description |
---|---|---|
workspace | optional | Your workspace id, if you do not specify the workspace context, the default workspace (your main workspace) will be used. If apikey is used as the authentication mode, you do not need to set this parameter. |
RESPONSE EXAMPLE
JSON
{
"code": 0,
"message": "success",
"data": null
}
See more HTTP Responses
RESPONSE DATA
The delete link request has no actual data returned.