API documentation

Video ยป DELETE

Delete the video from all the sites.

Arguments

None.

Request example

Delete the video (video 555) from all the sites.

cURL

curl -X DELETE \
--url "http://heyspread.com/api2/video/555?api_key=75b5744011e2dddbf2261e157505958b"

Ruby

HeySpread::Video.find(555).delete
HeySpread::Video.delete(555)

PHP

$video = HeySpread_Video::find(555);
$video->delete();

Response example

204 No Content

All good, empty response.