Delete an existing Loop Link.
Last updated 3 months ago
DELETE https://api.predicthq.com/v1/loop/links/
link_id
An existing Loop Link ID.
If successful, the HTTP response code will be 204 No Content.
204 No Content
curl -X DELETE "https://api.predicthq.com/v1/loop/links/$LINK_ID" \ -H "Authorization: Bearer $ACCESS_TOKEN"
import requests response = requests.delete( url="https://api.predicthq.com/v1/loop/links/$LINK_ID", headers={ "Authorization": "Bearer $ACCESS_TOKEN" } ) print(response.status_code)
Below are some guides relevant to this API:
Integrate with Loop Links