Install Template
curl --request POST \
--url https://app.fliqr.ai/api/accounts/templates/{template_id}/install \
--header 'Content-Type: application/json' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data '
{
"template_key": "asa823mkAkdk394kdsjs"
}
'const options = {
method: 'POST',
headers: {'X-ACCESS-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({template_key: 'asa823mkAkdk394kdsjs'})
};
fetch('https://app.fliqr.ai/api/accounts/templates/{template_id}/install', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/templates/{template_id}/install"
payload = { "template_key": "asa823mkAkdk394kdsjs" }
headers = {
"X-ACCESS-TOKEN": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true
}Templates
Install template
Install a template to your account
POST
/
accounts
/
templates
/
{template_id}
/
install
Install Template
curl --request POST \
--url https://app.fliqr.ai/api/accounts/templates/{template_id}/install \
--header 'Content-Type: application/json' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data '
{
"template_key": "asa823mkAkdk394kdsjs"
}
'const options = {
method: 'POST',
headers: {'X-ACCESS-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({template_key: 'asa823mkAkdk394kdsjs'})
};
fetch('https://app.fliqr.ai/api/accounts/templates/{template_id}/install', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/templates/{template_id}/install"
payload = { "template_key": "asa823mkAkdk394kdsjs" }
headers = {
"X-ACCESS-TOKEN": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=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
You can get template ID from the template link.
Body
application/json
The template key from the template link.
Response
200 - application/json
successful operation
Was this page helpful?
⌘I