For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete a Loop Link

Delete an existing Loop Link.

delete
Authorizations
AuthorizationstringRequired

Enter your PredictHQ API key. The Bearer prefix is added automatically.

When calling the API directly, send: Authorization: Bearer <YOUR_API_KEY> as documented at https://docs.predicthq.com/api/overview/authenticating

Path parameters
link_idstringRequired

An existing Loop Link ID.

Responses
204

Successful Response

No content

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 $API_TOKEN"
import requests

response = requests.delete(
    url="https://api.predicthq.com/v1/loop/links/$LINK_ID",
    headers={
      "Authorization": "Bearer $API_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?