Delete External API Configuration
curl --request DELETE \
--url https://api.bey.dev/v1/external-apis/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bey.dev/v1/external-apis/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bey.dev/v1/external-apis/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Agents External APIs
Delete External API Configuration
Delete an external API configuration and its stored secret.
Agents still referencing this configuration will fail to use it afterwards.
DELETE
/
v1
/
external-apis
/
{id}
Delete External API Configuration
curl --request DELETE \
--url https://api.bey.dev/v1/external-apis/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bey.dev/v1/external-apis/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bey.dev/v1/external-apis/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Was this page helpful?