Send Flow To User
curl --request POST \
--url https://app.fliqr.ai/api/contacts/{contact_id}/send/{flow_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'POST', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/contacts/{contact_id}/send/{flow_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/contacts/{contact_id}/send/{flow_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Contacts
Send flow to user
Send a flow to contact
POST
/
contacts
/
{contact_id}
/
send
/
{flow_id}
Send Flow To User
curl --request POST \
--url https://app.fliqr.ai/api/contacts/{contact_id}/send/{flow_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'POST', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/contacts/{contact_id}/send/{flow_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/contacts/{contact_id}/send/{flow_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Was this page helpful?
⌘I