Get Account Admins
curl --request GET \
--url https://app.fliqr.ai/api/accounts/admins \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/admins', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/admins"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"id": 123,
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"profile_pic": "<string>",
"available": true
}
]Accounts
Get account admins
Get all admins from a business account.
GET
/
accounts
/
admins
Get Account Admins
curl --request GET \
--url https://app.fliqr.ai/api/accounts/admins \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/admins', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/admins"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"id": 123,
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"profile_pic": "<string>",
"available": true
}
]Authorizations
API access token from your Fliqr AI dashboard (Settings → API). Send it in the X-ACCESS-TOKEN header on every request.
Was this page helpful?
⌘I