Delete a Loop Link
Delete an existing Loop Link.
Authorizations
AuthorizationstringRequired
Use 'Authorization: Bearer <YOUR_API_KEY>' as documented at https://docs.predicthq.com/authentication
Path parameters
link_idstringRequired
An existing Loop Link ID.
Responses
204
Successful Response
422
Validation Error
application/json
delete
/v1/loop/links/{link_id}DELETE /v1/loop/links/{link_id} HTTP/1.1
Host: api.predicthq.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Examples
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)OpenAPI Spec
The OpenAPI spec for Loop API can be found here.
Guides
ow are some guides relevant to this API:
Last updated
Was this helpful?