Remove Field From User
curl --request DELETE \
--url https://app.fliqr.ai/api/contacts/{contact_id}/custom_fields/{custom_field_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'DELETE', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/contacts/{contact_id}/custom_fields/{custom_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/contacts/{contact_id}/custom_fields/{custom_field_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Contacts
Remove field from user
remove a custom field from the contact
DELETE
/
contacts
/
{contact_id}
/
custom_fields
/
{custom_field_id}
Remove Field From User
curl --request DELETE \
--url https://app.fliqr.ai/api/contacts/{contact_id}/custom_fields/{custom_field_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'DELETE', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/contacts/{contact_id}/custom_fields/{custom_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/contacts/{contact_id}/custom_fields/{custom_field_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Authorizations
API access token from your Fliqr AI dashboard (Settings → API). Send it in the X-ACCESS-TOKEN header on every request.
Response
200 - application/json
successful operation
Was this page helpful?
⌘I