Skip to main content
DELETE
/
v1
/
links
/
{linkId}
Delete a link
curl --request DELETE \
  --url https://linkryse.com/v1/links/{linkId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>"
}

Path Parameters

The unique identifier of the link.

Response

id
string
The ID of the deleted link.

Code Examples

cURL
curl --request DELETE \
  --url https://linkryse.com/v1/links/link_123 \
  --header 'Authorization: Bearer sk_live_...'
Node.js
await linkryse.links.delete('link_123');