curl -X DELETE https://api.bouncy.ai/v1/links/bulk \ -H "X-Api-Key: bcy_live_pk_YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "linkIds": ["link_abc123", "link_def456", "link_ghi789"] }'
{ "deleted": ["link_abc123", "link_def456"], "failed": [ { "linkId": "link_ghi789", "error": { "code": "link_not_found", "message": "Link not found" } } ], "summary": { "total": 3, "succeeded": 2, "failed": 1 } }
Delete up to 100 short links in a single request
bcy_live_pk_YOUR_API_KEY
application/json
["link_abc123", "link_def456", "link_ghi789"]
Show properties
code
message