curl --request GET \
--url https://api.olie.ai/api/management/get-project-funnels \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.olie.ai/api/management/get-project-funnels"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.olie.ai/api/management/get-project-funnels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.olie.ai/api/management/get-project-funnels",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.olie.ai/api/management/get-project-funnels"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.olie.ai/api/management/get-project-funnels")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.olie.ai/api/management/get-project-funnels")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"response": true,
"project_funnels": [
{
"id": 74,
"name": "Desenvolvimento",
"prefix": "DL19",
"condition": "active",
"business_area": {
"id": 83,
"name": "Desenvolvimento de software-1-2-3-4"
},
"business_area_id": 83,
"form_id": 18,
"attachments_count": 0,
"projects_count": 0,
"status_count": 1,
"steps_count": 7,
"tags_count": 3,
"created_at": "2026-01-09T20:51:29.000000Z",
"updated_at": "2026-01-09T20:51:29.000000Z",
"deleted_at": null
},
{
"id": 23,
"name": "Captação de Recursos",
"prefix": "CR",
"condition": "active",
"business_area": {
"id": 10,
"name": "Serviços Financeiros 69444026ba810"
},
"business_area_id": 10,
"form_id": null,
"attachments_count": 0,
"projects_count": 22,
"status_count": 0,
"steps_count": 8,
"tags_count": 0,
"created_at": "2025-12-18T17:55:50.000000Z",
"updated_at": "2025-12-18T17:55:51.000000Z",
"deleted_at": null
},
{
"id": 53,
"name": "Auditoria",
"prefix": "JIHJ10",
"condition": "active",
"business_area": null,
"business_area_id": null,
"form_id": null,
"attachments_count": 0,
"projects_count": 0,
"status_count": 0,
"steps_count": 6,
"tags_count": 0,
"created_at": "2026-01-09T20:39:32.000000Z",
"updated_at": "2026-01-09T20:39:32.000000Z",
"deleted_at": null
},
{
"id": 71,
"name": "Vendas",
"prefix": "VDS",
"condition": "active",
"business_area": null,
"business_area_id": null,
"form_id": null,
"attachments_count": 0,
"projects_count": 0,
"status_count": 0,
"steps_count": 7,
"tags_count": 0,
"created_at": "2026-01-09T20:51:29.000000Z",
"updated_at": "2026-01-09T20:51:30.000000Z",
"deleted_at": null
}
]
}Listar funis de projeto
Lista os funis da conta na ordem de exibição definida pelo usuário, cada um com a área de negócio e as contagens de projetos, etapas, etiquetas, status e anexos. Só retorna os funis ativos por padrão — envie filter[condition]=inactive para os inativos e filter[trashed]=with ou only para incluir os arquivados. Funis que o usuário autenticado não tem permissão de ver são omitidos da lista. Ver Criar e configurar um funil e Filtros básicos.
curl --request GET \
--url https://api.olie.ai/api/management/get-project-funnels \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.olie.ai/api/management/get-project-funnels"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.olie.ai/api/management/get-project-funnels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.olie.ai/api/management/get-project-funnels",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.olie.ai/api/management/get-project-funnels"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.olie.ai/api/management/get-project-funnels")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.olie.ai/api/management/get-project-funnels")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"response": true,
"project_funnels": [
{
"id": 74,
"name": "Desenvolvimento",
"prefix": "DL19",
"condition": "active",
"business_area": {
"id": 83,
"name": "Desenvolvimento de software-1-2-3-4"
},
"business_area_id": 83,
"form_id": 18,
"attachments_count": 0,
"projects_count": 0,
"status_count": 1,
"steps_count": 7,
"tags_count": 3,
"created_at": "2026-01-09T20:51:29.000000Z",
"updated_at": "2026-01-09T20:51:29.000000Z",
"deleted_at": null
},
{
"id": 23,
"name": "Captação de Recursos",
"prefix": "CR",
"condition": "active",
"business_area": {
"id": 10,
"name": "Serviços Financeiros 69444026ba810"
},
"business_area_id": 10,
"form_id": null,
"attachments_count": 0,
"projects_count": 22,
"status_count": 0,
"steps_count": 8,
"tags_count": 0,
"created_at": "2025-12-18T17:55:50.000000Z",
"updated_at": "2025-12-18T17:55:51.000000Z",
"deleted_at": null
},
{
"id": 53,
"name": "Auditoria",
"prefix": "JIHJ10",
"condition": "active",
"business_area": null,
"business_area_id": null,
"form_id": null,
"attachments_count": 0,
"projects_count": 0,
"status_count": 0,
"steps_count": 6,
"tags_count": 0,
"created_at": "2026-01-09T20:39:32.000000Z",
"updated_at": "2026-01-09T20:39:32.000000Z",
"deleted_at": null
},
{
"id": 71,
"name": "Vendas",
"prefix": "VDS",
"condition": "active",
"business_area": null,
"business_area_id": null,
"form_id": null,
"attachments_count": 0,
"projects_count": 0,
"status_count": 0,
"steps_count": 7,
"tags_count": 0,
"created_at": "2026-01-09T20:51:29.000000Z",
"updated_at": "2026-01-09T20:51:30.000000Z",
"deleted_at": null
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Termo buscado no nome do funil. Ignorado quando id é informado.
ID de um funil específico. Retorna apenas ele.
Situação do funil: active (padrão quando o parâmetro é omitido) ou inactive.
Nome exato do funil.
ID da área de negócio dona dos funis.
Arquivados: with inclui, only retorna apenas eles, without (padrão) omite.
Was this page helpful?