Get Tag By Name
curl --request GET \
--url https://app.fliqr.ai/api/accounts/tags/name/{tag_name} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/tags/name/{tag_name}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/tags/name/{tag_name}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": 123,
"name": "<string>"
}Accounts
Get tag by name
Get a tag by name
GET
/
accounts
/
tags
/
name
/
{tag_name}
Get Tag By Name
curl --request GET \
--url https://app.fliqr.ai/api/accounts/tags/name/{tag_name} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/tags/name/{tag_name}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/tags/name/{tag_name}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": 123,
"name": "<string>"
}Was this page helpful?
⌘I