Pipelines Transfer Card
curl --request POST \
--url https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/transfer-to-pipeline \
--header 'Content-Type: application/json' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data '
{
"target_pipeline_id": 123456,
"target_stage_id": 654321
}
'const options = {
method: 'POST',
headers: {'X-ACCESS-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({target_pipeline_id: 123456, target_stage_id: 654321})
};
fetch('https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/transfer-to-pipeline', 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}/transfer-to-pipeline"
payload = {
"target_pipeline_id": 123456,
"target_stage_id": 654321
}
headers = {
"X-ACCESS-TOKEN": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true
}Pipelines
Pipelines transfer card
Transfer an opportunity / ticket to another pipeline.
POST
/
pipelines
/
{pipeline_id}
/
opportunities
/
{opportunity_id}
/
transfer-to-pipeline
Pipelines Transfer Card
curl --request POST \
--url https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/transfer-to-pipeline \
--header 'Content-Type: application/json' \
--header 'X-ACCESS-TOKEN: <api-key>' \
--data '
{
"target_pipeline_id": 123456,
"target_stage_id": 654321
}
'const options = {
method: 'POST',
headers: {'X-ACCESS-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({target_pipeline_id: 123456, target_stage_id: 654321})
};
fetch('https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities/{opportunity_id}/transfer-to-pipeline', 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}/transfer-to-pipeline"
payload = {
"target_pipeline_id": 123456,
"target_stage_id": 654321
}
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.
Response
200 - application/json
successful operation
Was this page helpful?
⌘I