Remove web link

delete
https://api.box.com/2.0
/web_links/:web_link_id

Deletes a web link.

Request

application/json

Path Parameters

Response

none

An empty response will be returned when the web link was successfully deleted.

application/jsonClient error

An unexpected client error.

delete
Remove web link
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

cURL
curl -X DELETE https://api.box.com/2.0/web_links/12345 \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
Java
BoxWebLink webLink = new BoxWebLink(api, id);
webLink.delete();
Python
client.web_link('12345').delete()
print('The web link was deleted!')
Node
client.weblinks.delete('11111')
	.then(() => {
		// deletion succeeded — no value returned
	});