Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request PUT \ --url https://linkryse.com/v1/links/{linkId} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "url": "<string>", "archived": true, "tags": [ {} ] } '
Update an existing link’s configuration.
curl --request PUT \ --url https://linkryse.com/v1/links/link_123 \ --header 'Authorization: Bearer sk_live_...' \ --header 'Content-Type: application/json' \ --data '{ "url": "https://bing.com", "archived": true }'
const updatedLink = await linkryse.links.update('link_123', { url: 'https://bing.com', archived: true });