Pipelines Add Comment
curl --request POST \
--url https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments \
--header 'Content-Type: application/json' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data '
{
"content": "This is a comment"
}
'const options = {
method: 'POST',
headers: {'X-ACCESS-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({content: 'This is a comment'})
};
fetch('https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments"
payload = { "content": "This is a comment" }
headers = {
"X-ACCESS-TOKEN": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"id": 123,
"data": "<string>",
"created_at": "2028-02-08 12:34:56",
"created_by": 123
}Pipelines
Pipelines add comment
Creates a new comment on an opportunity / ticket.
POST
/
pipelines
/
{pipeline_id}
/
opportunities
/
{opportunity_id}
/
comments
Pipelines Add Comment
curl --request POST \
--url https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments \
--header 'Content-Type: application/json' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data '
{
"content": "This is a comment"
}
'const options = {
method: 'POST',
headers: {'X-ACCESS-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({content: 'This is a comment'})
};
fetch('https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments"
payload = { "content": "This is a comment" }
headers = {
"X-ACCESS-TOKEN": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"id": 123,
"data": "<string>",
"created_at": "2028-02-08 12:34:56",
"created_by": 123
}Authorizations
API access token from your Fliqr AI dashboard (Settings → API). Send it in the X-ACCESS-TOKEN header on every request.
Body
application/json
Was this page helpful?
⌘I