Request
Your API key (e.g., bcy_live_pk_YOUR_API_KEY)
Path Parameters
The link IDExample: link_abc123xyz
Body
Set to true to enable the link, false to disable itExample: false
Disabled links will show a “Link Disabled” page instead of redirecting. The link is not deleted and can be re-enabled at any time.
Response
curl -X PATCH https://api.bouncy.ai/v1/links/link_abc123xyz/status \
-H "X-Api-Key: bcy_live_pk_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"enabled": false}'
{
"id": "link_abc123xyz",
"enabled": false,
"message": "Link disabled successfully"
}