Set B Field
curl --request POST \
--url https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id} \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data 'value=<string>'const options = {
method: 'POST',
headers: {
'X-ACCESS-TOKEN': '<api-key>',
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({value: '<string>'})
};
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}"
payload = { "value": "<string>" }
headers = {
"X-ACCESS-TOKEN": "<api-key>",
"Content-Type": "application/x-www-form-urlencoded"
}
response = requests.post(url, data=payload, headers=headers)
print(response.text){
"success": true
}Accounts
Set b field
Set a bot field value
POST
/
accounts
/
bot_fields
/
{bot_field_id}
Set B Field
curl --request POST \
--url https://app.fliqr.ai/api/accounts/bot_fields/{bot_field_id} \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data 'value=<string>'const options = {
method: 'POST',
headers: {
'X-ACCESS-TOKEN': '<api-key>',
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({value: '<string>'})
};
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}"
payload = { "value": "<string>" }
headers = {
"X-ACCESS-TOKEN": "<api-key>",
"Content-Type": "application/x-www-form-urlencoded"
}
response = requests.post(url, data=payload, 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.
Path Parameters
Body
application/x-www-form-urlencoded
Response
200 - application/json
successful operation
Was this page helpful?
⌘I