Get B Field Value
curl --request GET \
--url https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', 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.get(url, headers=headers)
print(response.text){
"id": 2334,
"name": "age",
"type": 1,
"value": 25
}Accounts
Get b field value
Get bot field value by id
GET
/
accounts
/
bot_fields
/
{bot_field_id}
Get B Field Value
curl --request GET \
--url https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', 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.get(url, headers=headers)
print(response.text){
"id": 2334,
"name": "age",
"type": 1,
"value": 25
}Authorizations
API access token from your Fliqr AI dashboard (Settings → API). Send it in the X-ACCESS-TOKEN header on every request.
Path Parameters
Was this page helpful?
⌘I