Listar parâmetros disponíveis para filtragem de um modelo
curl --request GET \
--url https://api.olie.ai/api/management/system/params/{model_name} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.olie.ai/api/management/system/params/{model_name}"
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/system/params/{model_name}', 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/system/params/{model_name}",
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/system/params/{model_name}"
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/system/params/{model_name}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.olie.ai/api/management/system/params/{model_name}")
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,
"params": {
"filters": [
{
"name": "id",
"input_type": "text",
"operators": [
"equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "code",
"input_type": "text",
"operators": [
"equals",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "name",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "description",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "impact",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [
{
"label": 1,
"value": 1
},
{
"label": 2,
"value": 2
},
{
"label": 3,
"value": 3
},
{
"label": 4,
"value": 4
},
{
"label": 5,
"value": 5
},
{
"label": 6,
"value": 6
},
{
"label": 7,
"value": 7
},
{
"label": 8,
"value": 8
},
{
"label": 9,
"value": 9
},
{
"label": 10,
"value": 10
}
],
"arguments": [],
"hydrate": null
},
{
"name": "status",
"input_type": "text",
"operators": [
"equals",
"not_equals"
],
"options": [
{
"label": "Em andamento",
"value": 1
},
{
"label": "Concluído",
"value": 2
},
{
"label": "Arquivado",
"value": 3
},
{
"label": "Paralisado",
"value": 4
}
],
"arguments": [],
"hydrate": null
},
{
"name": "budget",
"input_type": "number",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "funnel_status_at",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "funnel_status",
"label": "Status de Funil",
"required": false,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
}
],
"hydrate": null
},
{
"name": "funnel_forecast_date",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "funnel_forecast_date",
"label": "Funil de Projetos",
"required": false,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
}
],
"hydrate": null
},
{
"name": "funnel_status",
"input_type": "text",
"operators": [
"equals",
"not_equals"
],
"options": [],
"arguments": [
{
"id": "funnel_status",
"label": "Status de Funil",
"required": false,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
}
],
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "funnel_status",
"children_label": "name"
}
},
{
"name": "funnel_tags",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "tags",
"children_label": "name"
}
},
{
"name": "parent",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/projects",
"options": "projects",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "children",
"input_type": "text",
"operators": [
"is_null",
"is_not_null",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/projects",
"options": "projects",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "customer",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/customers",
"options": "customers",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "contact",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/contacts",
"options": "contacts",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "assignee",
"input_type": "text",
"operators": [
"equals",
"contains",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-users",
"options": "users",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "creator",
"input_type": "text",
"operators": [
"contains",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-users",
"options": "users",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "created_at",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "funnels",
"input_type": "text",
"operators": [
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "funnel_steps",
"input_type": "text",
"operators": [
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "steps",
"children_label": "name"
}
},
{
"name": "funnel_step_linked_at",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [
{
"id": "funnel_step",
"label": "Etapa de Funil",
"required": false,
"modelClass": "App\\Models\\FunnelStep",
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "steps",
"children_label": "name"
}
}
],
"hydrate": null
},
{
"name": "completed_percentage",
"input_type": "number",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "project_groups",
"input_type": "text",
"operators": [
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/project-groups",
"options": "project_groups",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "project_step_form_answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "project_step_form_answer_pool_step",
"label": "Etapa de Funil",
"required": true,
"modelClass": "App\\Models\\FunnelStep",
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "steps",
"children_label": "name"
}
},
{
"id": "project_step_form_answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "project_funnel_assignments_answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "project_funnel_assignments_answer_pool_project_funnel",
"label": "Funil de Projetos",
"required": true,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"id": "project_funnel_assignments_answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "project_loose_form_answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "project_loose_form_answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "name_code",
"input_type": "text",
"operators": [
"contains"
],
"options": [],
"arguments": [],
"hydrate": null
}
],
"sorting": [
{
"name": "name",
"arguments": []
},
{
"name": "impact",
"arguments": []
},
{
"name": "status",
"arguments": []
},
{
"name": "budget",
"arguments": []
},
{
"name": "created_at",
"arguments": []
},
{
"name": "assigned_to",
"arguments": []
},
{
"name": "funnel_step_linked_at",
"arguments": []
},
{
"name": "answer_pool",
"arguments": []
},
{
"name": "project_funnel_assignments_answer_pool",
"arguments": []
},
{
"name": "customer__name",
"arguments": []
},
{
"name": "contact__name",
"arguments": []
},
{
"name": "project_funnel_assignments__statuses_at",
"arguments": []
}
]
}
}system
Listar parâmetros disponíveis para filtragem de um modelo
Listar parâmetros disponíveis para filtragem de um modelo específico. Use esse endpoint para saber quais parâmetros disponibilizamos para cada objeto.
Leia aqui a documentação sobre parâmetros disponíveis. Os parâmetros aqui listados são disponíveis apenas nas buscas avançadas.
GET
/
api
/
management
/
system
/
params
/
{model_name}
Listar parâmetros disponíveis para filtragem de um modelo
curl --request GET \
--url https://api.olie.ai/api/management/system/params/{model_name} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.olie.ai/api/management/system/params/{model_name}"
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/system/params/{model_name}', 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/system/params/{model_name}",
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/system/params/{model_name}"
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/system/params/{model_name}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.olie.ai/api/management/system/params/{model_name}")
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,
"params": {
"filters": [
{
"name": "id",
"input_type": "text",
"operators": [
"equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "code",
"input_type": "text",
"operators": [
"equals",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "name",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "description",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "impact",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [
{
"label": 1,
"value": 1
},
{
"label": 2,
"value": 2
},
{
"label": 3,
"value": 3
},
{
"label": 4,
"value": 4
},
{
"label": 5,
"value": 5
},
{
"label": 6,
"value": 6
},
{
"label": 7,
"value": 7
},
{
"label": 8,
"value": 8
},
{
"label": 9,
"value": 9
},
{
"label": 10,
"value": 10
}
],
"arguments": [],
"hydrate": null
},
{
"name": "status",
"input_type": "text",
"operators": [
"equals",
"not_equals"
],
"options": [
{
"label": "Em andamento",
"value": 1
},
{
"label": "Concluído",
"value": 2
},
{
"label": "Arquivado",
"value": 3
},
{
"label": "Paralisado",
"value": 4
}
],
"arguments": [],
"hydrate": null
},
{
"name": "budget",
"input_type": "number",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "funnel_status_at",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "funnel_status",
"label": "Status de Funil",
"required": false,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
}
],
"hydrate": null
},
{
"name": "funnel_forecast_date",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "funnel_forecast_date",
"label": "Funil de Projetos",
"required": false,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
}
],
"hydrate": null
},
{
"name": "funnel_status",
"input_type": "text",
"operators": [
"equals",
"not_equals"
],
"options": [],
"arguments": [
{
"id": "funnel_status",
"label": "Status de Funil",
"required": false,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
}
],
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "funnel_status",
"children_label": "name"
}
},
{
"name": "funnel_tags",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "tags",
"children_label": "name"
}
},
{
"name": "parent",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/projects",
"options": "projects",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "children",
"input_type": "text",
"operators": [
"is_null",
"is_not_null",
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/projects",
"options": "projects",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "customer",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/customers",
"options": "customers",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "contact",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/contacts",
"options": "contacts",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "assignee",
"input_type": "text",
"operators": [
"equals",
"contains",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-users",
"options": "users",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "creator",
"input_type": "text",
"operators": [
"contains",
"not_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-users",
"options": "users",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "created_at",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "funnels",
"input_type": "text",
"operators": [
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "funnel_steps",
"input_type": "text",
"operators": [
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "steps",
"children_label": "name"
}
},
{
"name": "funnel_step_linked_at",
"input_type": "datetime-local",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [
{
"id": "funnel_step",
"label": "Etapa de Funil",
"required": false,
"modelClass": "App\\Models\\FunnelStep",
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "steps",
"children_label": "name"
}
}
],
"hydrate": null
},
{
"name": "completed_percentage",
"input_type": "number",
"operators": [
"equals",
"not_equals",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals"
],
"options": [],
"arguments": [],
"hydrate": null
},
{
"name": "project_groups",
"input_type": "text",
"operators": [
"contains",
"not_contains"
],
"options": [],
"arguments": [],
"hydrate": {
"route": "/api/management/project-groups",
"options": "project_groups",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"name": "answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "project_step_form_answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "project_step_form_answer_pool_step",
"label": "Etapa de Funil",
"required": true,
"modelClass": "App\\Models\\FunnelStep",
"hydrate": {
"route": "/api/management/get-available-steps",
"options": "funnels",
"key": "id",
"label": "name",
"children_key": "steps",
"children_label": "name"
}
},
{
"id": "project_step_form_answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "project_funnel_assignments_answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "project_funnel_assignments_answer_pool_project_funnel",
"label": "Funil de Projetos",
"required": true,
"modelClass": "App\\Models\\ProjectFunnel",
"hydrate": {
"route": "/api/management/get-project-funnels",
"options": "project_funnels",
"key": "id",
"label": "name",
"children_key": null,
"children_label": null
}
},
{
"id": "project_funnel_assignments_answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "project_loose_form_answer_pool",
"input_type": "text",
"operators": [
"equals",
"not_equals",
"contains",
"not_contains",
"greater_than",
"greater_than_or_equals",
"less_than",
"less_than_or_equals",
"is_null",
"is_not_null"
],
"options": [],
"arguments": [
{
"id": "project_loose_form_answer_pool_edge",
"label": "Campo",
"required": true,
"modelClass": "App\\Models\\FormEdge",
"hydrate": {
"route": "/api/management/get-forms",
"options": "forms",
"key": "id",
"label": "label",
"children_key": "edges",
"children_label": "title"
}
}
],
"hydrate": null
},
{
"name": "name_code",
"input_type": "text",
"operators": [
"contains"
],
"options": [],
"arguments": [],
"hydrate": null
}
],
"sorting": [
{
"name": "name",
"arguments": []
},
{
"name": "impact",
"arguments": []
},
{
"name": "status",
"arguments": []
},
{
"name": "budget",
"arguments": []
},
{
"name": "created_at",
"arguments": []
},
{
"name": "assigned_to",
"arguments": []
},
{
"name": "funnel_step_linked_at",
"arguments": []
},
{
"name": "answer_pool",
"arguments": []
},
{
"name": "project_funnel_assignments_answer_pool",
"arguments": []
},
{
"name": "customer__name",
"arguments": []
},
{
"name": "contact__name",
"arguments": []
},
{
"name": "project_funnel_assignments__statuses_at",
"arguments": []
}
]
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Nome do objeto a ser consultado.
Available options:
project, customer, contact Was this page helpful?
⌘I