Delete Page
Permanently deletes a Link-in-Bio page. If the page was published, its public URL will immediately return a 404. This action cannot be undone.
DELETE
/v1/bio/pages/{page_id} bio:write Parameters
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page_id | string | Yes | The unique identifier of the page to delete. |
Request examples
curl -X DELETE https://xqr.co/api/v1/bio/pages/bio_abc123 \ -H "Authorization: Bearer YOUR_API_KEY"const pageId = "bio_abc123";
const res = await fetch( `https://xqr.co/api/v1/bio/pages/${pageId}`, { method: "DELETE", headers: { Authorization: "Bearer YOUR_API_KEY", }, });
// 204 No Content on successconsole.log(res.status); // 204import httpx
page_id = "bio_abc123"
res = httpx.delete( f"https://xqr.co/api/v1/bio/pages/{page_id}", headers={"Authorization": "Bearer YOUR_API_KEY"},)
assert res.status_code == 204Response
204 No Content
The response body is empty on success.
Was this page helpful?
Thanks for your feedback!