Remove B Field
curl --request DELETE \
--url https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'DELETE', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Accounts
Remove b field
Unset the value of a bot field
DELETE
/
accounts
/
bot_fields
/
{bot_field_id}
Remove B Field
curl --request DELETE \
--url https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'DELETE', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Was this page helpful?
⌘I