Reminders
List reminders with filters and pagination
POST
/
reminders
/
list
List reminders with filters and pagination
curl --request POST \
--url https://api.breakcold.com/rest/reminders/list \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"cursor": 123,
"filter": {
"leads_filter": {
"leads": [
"<string>"
],
"not_leads": [
"<string>"
],
"is_company": true,
"is_contract": true,
"is_tracked": true,
"ai_enabled": true,
"search": "<string>",
"has_icebreaker": true,
"tags": [
"<string>"
],
"status": [
"<string>"
],
"has_list": true,
"has_no_list": true,
"lists": [
"<string>"
],
"has_owner": true,
"has_no_owner": true,
"owners": [
"<string>"
],
"score": [
"<string>"
],
"attributes": [
{
"id": "<string>",
"value": "<string>"
}
]
},
"id_lead": "<string>",
"id_list": "<string>",
"is_done": true,
"id_status": "<string>",
"users": [
"<string>"
],
"search": "<string>",
"late_tasks": true,
"ai_generated": true,
"ai_action_channel": "<string>",
"ai_action_priority": "<string>",
"date_from": "2023-11-07T05:31:56Z",
"date_to": "2023-11-07T05:31:56Z",
"no_date": true
},
"timezone": "<string>",
"orderBy": {
"field": "created_at",
"type": "desc"
},
"pagination": {
"page": 1,
"page_size": 50.5
}
}
'import requests
url = "https://api.breakcold.com/rest/reminders/list"
payload = {
"cursor": 123,
"filter": {
"leads_filter": {
"leads": ["<string>"],
"not_leads": ["<string>"],
"is_company": True,
"is_contract": True,
"is_tracked": True,
"ai_enabled": True,
"search": "<string>",
"has_icebreaker": True,
"tags": ["<string>"],
"status": ["<string>"],
"has_list": True,
"has_no_list": True,
"lists": ["<string>"],
"has_owner": True,
"has_no_owner": True,
"owners": ["<string>"],
"score": ["<string>"],
"attributes": [
{
"id": "<string>",
"value": "<string>"
}
]
},
"id_lead": "<string>",
"id_list": "<string>",
"is_done": True,
"id_status": "<string>",
"users": ["<string>"],
"search": "<string>",
"late_tasks": True,
"ai_generated": True,
"ai_action_channel": "<string>",
"ai_action_priority": "<string>",
"date_from": "2023-11-07T05:31:56Z",
"date_to": "2023-11-07T05:31:56Z",
"no_date": True
},
"timezone": "<string>",
"orderBy": {
"field": "created_at",
"type": "desc"
},
"pagination": {
"page": 1,
"page_size": 50.5
}
}
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cursor: 123,
filter: {
leads_filter: {
leads: ['<string>'],
not_leads: ['<string>'],
is_company: true,
is_contract: true,
is_tracked: true,
ai_enabled: true,
search: '<string>',
has_icebreaker: true,
tags: ['<string>'],
status: ['<string>'],
has_list: true,
has_no_list: true,
lists: ['<string>'],
has_owner: true,
has_no_owner: true,
owners: ['<string>'],
score: ['<string>'],
attributes: [{id: '<string>', value: '<string>'}]
},
id_lead: '<string>',
id_list: '<string>',
is_done: true,
id_status: '<string>',
users: ['<string>'],
search: '<string>',
late_tasks: true,
ai_generated: true,
ai_action_channel: '<string>',
ai_action_priority: '<string>',
date_from: '2023-11-07T05:31:56Z',
date_to: '2023-11-07T05:31:56Z',
no_date: true
},
timezone: '<string>',
orderBy: {field: 'created_at', type: 'desc'},
pagination: {page: 1, page_size: 50.5}
})
};
fetch('https://api.breakcold.com/rest/reminders/list', 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.breakcold.com/rest/reminders/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'cursor' => 123,
'filter' => [
'leads_filter' => [
'leads' => [
'<string>'
],
'not_leads' => [
'<string>'
],
'is_company' => true,
'is_contract' => true,
'is_tracked' => true,
'ai_enabled' => true,
'search' => '<string>',
'has_icebreaker' => true,
'tags' => [
'<string>'
],
'status' => [
'<string>'
],
'has_list' => true,
'has_no_list' => true,
'lists' => [
'<string>'
],
'has_owner' => true,
'has_no_owner' => true,
'owners' => [
'<string>'
],
'score' => [
'<string>'
],
'attributes' => [
[
'id' => '<string>',
'value' => '<string>'
]
]
],
'id_lead' => '<string>',
'id_list' => '<string>',
'is_done' => true,
'id_status' => '<string>',
'users' => [
'<string>'
],
'search' => '<string>',
'late_tasks' => true,
'ai_generated' => true,
'ai_action_channel' => '<string>',
'ai_action_priority' => '<string>',
'date_from' => '2023-11-07T05:31:56Z',
'date_to' => '2023-11-07T05:31:56Z',
'no_date' => true
],
'timezone' => '<string>',
'orderBy' => [
'field' => 'created_at',
'type' => 'desc'
],
'pagination' => [
'page' => 1,
'page_size' => 50.5
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.breakcold.com/rest/reminders/list"
payload := strings.NewReader("{\n \"cursor\": 123,\n \"filter\": {\n \"leads_filter\": {\n \"leads\": [\n \"<string>\"\n ],\n \"not_leads\": [\n \"<string>\"\n ],\n \"is_company\": true,\n \"is_contract\": true,\n \"is_tracked\": true,\n \"ai_enabled\": true,\n \"search\": \"<string>\",\n \"has_icebreaker\": true,\n \"tags\": [\n \"<string>\"\n ],\n \"status\": [\n \"<string>\"\n ],\n \"has_list\": true,\n \"has_no_list\": true,\n \"lists\": [\n \"<string>\"\n ],\n \"has_owner\": true,\n \"has_no_owner\": true,\n \"owners\": [\n \"<string>\"\n ],\n \"score\": [\n \"<string>\"\n ],\n \"attributes\": [\n {\n \"id\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n },\n \"id_lead\": \"<string>\",\n \"id_list\": \"<string>\",\n \"is_done\": true,\n \"id_status\": \"<string>\",\n \"users\": [\n \"<string>\"\n ],\n \"search\": \"<string>\",\n \"late_tasks\": true,\n \"ai_generated\": true,\n \"ai_action_channel\": \"<string>\",\n \"ai_action_priority\": \"<string>\",\n \"date_from\": \"2023-11-07T05:31:56Z\",\n \"date_to\": \"2023-11-07T05:31:56Z\",\n \"no_date\": true\n },\n \"timezone\": \"<string>\",\n \"orderBy\": {\n \"field\": \"created_at\",\n \"type\": \"desc\"\n },\n \"pagination\": {\n \"page\": 1,\n \"page_size\": 50.5\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.breakcold.com/rest/reminders/list")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"cursor\": 123,\n \"filter\": {\n \"leads_filter\": {\n \"leads\": [\n \"<string>\"\n ],\n \"not_leads\": [\n \"<string>\"\n ],\n \"is_company\": true,\n \"is_contract\": true,\n \"is_tracked\": true,\n \"ai_enabled\": true,\n \"search\": \"<string>\",\n \"has_icebreaker\": true,\n \"tags\": [\n \"<string>\"\n ],\n \"status\": [\n \"<string>\"\n ],\n \"has_list\": true,\n \"has_no_list\": true,\n \"lists\": [\n \"<string>\"\n ],\n \"has_owner\": true,\n \"has_no_owner\": true,\n \"owners\": [\n \"<string>\"\n ],\n \"score\": [\n \"<string>\"\n ],\n \"attributes\": [\n {\n \"id\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n },\n \"id_lead\": \"<string>\",\n \"id_list\": \"<string>\",\n \"is_done\": true,\n \"id_status\": \"<string>\",\n \"users\": [\n \"<string>\"\n ],\n \"search\": \"<string>\",\n \"late_tasks\": true,\n \"ai_generated\": true,\n \"ai_action_channel\": \"<string>\",\n \"ai_action_priority\": \"<string>\",\n \"date_from\": \"2023-11-07T05:31:56Z\",\n \"date_to\": \"2023-11-07T05:31:56Z\",\n \"no_date\": true\n },\n \"timezone\": \"<string>\",\n \"orderBy\": {\n \"field\": \"created_at\",\n \"type\": \"desc\"\n },\n \"pagination\": {\n \"page\": 1,\n \"page_size\": 50.5\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breakcold.com/rest/reminders/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cursor\": 123,\n \"filter\": {\n \"leads_filter\": {\n \"leads\": [\n \"<string>\"\n ],\n \"not_leads\": [\n \"<string>\"\n ],\n \"is_company\": true,\n \"is_contract\": true,\n \"is_tracked\": true,\n \"ai_enabled\": true,\n \"search\": \"<string>\",\n \"has_icebreaker\": true,\n \"tags\": [\n \"<string>\"\n ],\n \"status\": [\n \"<string>\"\n ],\n \"has_list\": true,\n \"has_no_list\": true,\n \"lists\": [\n \"<string>\"\n ],\n \"has_owner\": true,\n \"has_no_owner\": true,\n \"owners\": [\n \"<string>\"\n ],\n \"score\": [\n \"<string>\"\n ],\n \"attributes\": [\n {\n \"id\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n },\n \"id_lead\": \"<string>\",\n \"id_list\": \"<string>\",\n \"is_done\": true,\n \"id_status\": \"<string>\",\n \"users\": [\n \"<string>\"\n ],\n \"search\": \"<string>\",\n \"late_tasks\": true,\n \"ai_generated\": true,\n \"ai_action_channel\": \"<string>\",\n \"ai_action_priority\": \"<string>\",\n \"date_from\": \"2023-11-07T05:31:56Z\",\n \"date_to\": \"2023-11-07T05:31:56Z\",\n \"no_date\": true\n },\n \"timezone\": \"<string>\",\n \"orderBy\": {\n \"field\": \"created_at\",\n \"type\": \"desc\"\n },\n \"pagination\": {\n \"page\": 1,\n \"page_size\": 50.5\n }\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"date": "<string>",
"name": "<string>",
"cron": "<string>",
"cron_id": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"is_deleted": true,
"is_done": true,
"ressource_link": "<string>",
"ai_generated": true,
"ai_action_channel": "<string>",
"ai_action_description": "<string>",
"ai_action_priority": "<string>",
"ai_action_reasoning": "<string>",
"ai_time_precision": "<string>",
"ai_followup_strategy": "<string>",
"ai_action_rationale": "<string>",
"ai_draft_subject": "<string>",
"ai_draft_message": "<string>",
"ai_draft_metadata": "<string>",
"id_lead": "<string>",
"id_space": "<string>"
}
],
"pagination": {
"page": 123,
"page_size": 123
}
}{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}Authorizations
Body
application/json
Was this page helpful?
⌘I
List reminders with filters and pagination
curl --request POST \
--url https://api.breakcold.com/rest/reminders/list \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"cursor": 123,
"filter": {
"leads_filter": {
"leads": [
"<string>"
],
"not_leads": [
"<string>"
],
"is_company": true,
"is_contract": true,
"is_tracked": true,
"ai_enabled": true,
"search": "<string>",
"has_icebreaker": true,
"tags": [
"<string>"
],
"status": [
"<string>"
],
"has_list": true,
"has_no_list": true,
"lists": [
"<string>"
],
"has_owner": true,
"has_no_owner": true,
"owners": [
"<string>"
],
"score": [
"<string>"
],
"attributes": [
{
"id": "<string>",
"value": "<string>"
}
]
},
"id_lead": "<string>",
"id_list": "<string>",
"is_done": true,
"id_status": "<string>",
"users": [
"<string>"
],
"search": "<string>",
"late_tasks": true,
"ai_generated": true,
"ai_action_channel": "<string>",
"ai_action_priority": "<string>",
"date_from": "2023-11-07T05:31:56Z",
"date_to": "2023-11-07T05:31:56Z",
"no_date": true
},
"timezone": "<string>",
"orderBy": {
"field": "created_at",
"type": "desc"
},
"pagination": {
"page": 1,
"page_size": 50.5
}
}
'import requests
url = "https://api.breakcold.com/rest/reminders/list"
payload = {
"cursor": 123,
"filter": {
"leads_filter": {
"leads": ["<string>"],
"not_leads": ["<string>"],
"is_company": True,
"is_contract": True,
"is_tracked": True,
"ai_enabled": True,
"search": "<string>",
"has_icebreaker": True,
"tags": ["<string>"],
"status": ["<string>"],
"has_list": True,
"has_no_list": True,
"lists": ["<string>"],
"has_owner": True,
"has_no_owner": True,
"owners": ["<string>"],
"score": ["<string>"],
"attributes": [
{
"id": "<string>",
"value": "<string>"
}
]
},
"id_lead": "<string>",
"id_list": "<string>",
"is_done": True,
"id_status": "<string>",
"users": ["<string>"],
"search": "<string>",
"late_tasks": True,
"ai_generated": True,
"ai_action_channel": "<string>",
"ai_action_priority": "<string>",
"date_from": "2023-11-07T05:31:56Z",
"date_to": "2023-11-07T05:31:56Z",
"no_date": True
},
"timezone": "<string>",
"orderBy": {
"field": "created_at",
"type": "desc"
},
"pagination": {
"page": 1,
"page_size": 50.5
}
}
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cursor: 123,
filter: {
leads_filter: {
leads: ['<string>'],
not_leads: ['<string>'],
is_company: true,
is_contract: true,
is_tracked: true,
ai_enabled: true,
search: '<string>',
has_icebreaker: true,
tags: ['<string>'],
status: ['<string>'],
has_list: true,
has_no_list: true,
lists: ['<string>'],
has_owner: true,
has_no_owner: true,
owners: ['<string>'],
score: ['<string>'],
attributes: [{id: '<string>', value: '<string>'}]
},
id_lead: '<string>',
id_list: '<string>',
is_done: true,
id_status: '<string>',
users: ['<string>'],
search: '<string>',
late_tasks: true,
ai_generated: true,
ai_action_channel: '<string>',
ai_action_priority: '<string>',
date_from: '2023-11-07T05:31:56Z',
date_to: '2023-11-07T05:31:56Z',
no_date: true
},
timezone: '<string>',
orderBy: {field: 'created_at', type: 'desc'},
pagination: {page: 1, page_size: 50.5}
})
};
fetch('https://api.breakcold.com/rest/reminders/list', 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.breakcold.com/rest/reminders/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'cursor' => 123,
'filter' => [
'leads_filter' => [
'leads' => [
'<string>'
],
'not_leads' => [
'<string>'
],
'is_company' => true,
'is_contract' => true,
'is_tracked' => true,
'ai_enabled' => true,
'search' => '<string>',
'has_icebreaker' => true,
'tags' => [
'<string>'
],
'status' => [
'<string>'
],
'has_list' => true,
'has_no_list' => true,
'lists' => [
'<string>'
],
'has_owner' => true,
'has_no_owner' => true,
'owners' => [
'<string>'
],
'score' => [
'<string>'
],
'attributes' => [
[
'id' => '<string>',
'value' => '<string>'
]
]
],
'id_lead' => '<string>',
'id_list' => '<string>',
'is_done' => true,
'id_status' => '<string>',
'users' => [
'<string>'
],
'search' => '<string>',
'late_tasks' => true,
'ai_generated' => true,
'ai_action_channel' => '<string>',
'ai_action_priority' => '<string>',
'date_from' => '2023-11-07T05:31:56Z',
'date_to' => '2023-11-07T05:31:56Z',
'no_date' => true
],
'timezone' => '<string>',
'orderBy' => [
'field' => 'created_at',
'type' => 'desc'
],
'pagination' => [
'page' => 1,
'page_size' => 50.5
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.breakcold.com/rest/reminders/list"
payload := strings.NewReader("{\n \"cursor\": 123,\n \"filter\": {\n \"leads_filter\": {\n \"leads\": [\n \"<string>\"\n ],\n \"not_leads\": [\n \"<string>\"\n ],\n \"is_company\": true,\n \"is_contract\": true,\n \"is_tracked\": true,\n \"ai_enabled\": true,\n \"search\": \"<string>\",\n \"has_icebreaker\": true,\n \"tags\": [\n \"<string>\"\n ],\n \"status\": [\n \"<string>\"\n ],\n \"has_list\": true,\n \"has_no_list\": true,\n \"lists\": [\n \"<string>\"\n ],\n \"has_owner\": true,\n \"has_no_owner\": true,\n \"owners\": [\n \"<string>\"\n ],\n \"score\": [\n \"<string>\"\n ],\n \"attributes\": [\n {\n \"id\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n },\n \"id_lead\": \"<string>\",\n \"id_list\": \"<string>\",\n \"is_done\": true,\n \"id_status\": \"<string>\",\n \"users\": [\n \"<string>\"\n ],\n \"search\": \"<string>\",\n \"late_tasks\": true,\n \"ai_generated\": true,\n \"ai_action_channel\": \"<string>\",\n \"ai_action_priority\": \"<string>\",\n \"date_from\": \"2023-11-07T05:31:56Z\",\n \"date_to\": \"2023-11-07T05:31:56Z\",\n \"no_date\": true\n },\n \"timezone\": \"<string>\",\n \"orderBy\": {\n \"field\": \"created_at\",\n \"type\": \"desc\"\n },\n \"pagination\": {\n \"page\": 1,\n \"page_size\": 50.5\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.breakcold.com/rest/reminders/list")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"cursor\": 123,\n \"filter\": {\n \"leads_filter\": {\n \"leads\": [\n \"<string>\"\n ],\n \"not_leads\": [\n \"<string>\"\n ],\n \"is_company\": true,\n \"is_contract\": true,\n \"is_tracked\": true,\n \"ai_enabled\": true,\n \"search\": \"<string>\",\n \"has_icebreaker\": true,\n \"tags\": [\n \"<string>\"\n ],\n \"status\": [\n \"<string>\"\n ],\n \"has_list\": true,\n \"has_no_list\": true,\n \"lists\": [\n \"<string>\"\n ],\n \"has_owner\": true,\n \"has_no_owner\": true,\n \"owners\": [\n \"<string>\"\n ],\n \"score\": [\n \"<string>\"\n ],\n \"attributes\": [\n {\n \"id\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n },\n \"id_lead\": \"<string>\",\n \"id_list\": \"<string>\",\n \"is_done\": true,\n \"id_status\": \"<string>\",\n \"users\": [\n \"<string>\"\n ],\n \"search\": \"<string>\",\n \"late_tasks\": true,\n \"ai_generated\": true,\n \"ai_action_channel\": \"<string>\",\n \"ai_action_priority\": \"<string>\",\n \"date_from\": \"2023-11-07T05:31:56Z\",\n \"date_to\": \"2023-11-07T05:31:56Z\",\n \"no_date\": true\n },\n \"timezone\": \"<string>\",\n \"orderBy\": {\n \"field\": \"created_at\",\n \"type\": \"desc\"\n },\n \"pagination\": {\n \"page\": 1,\n \"page_size\": 50.5\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breakcold.com/rest/reminders/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cursor\": 123,\n \"filter\": {\n \"leads_filter\": {\n \"leads\": [\n \"<string>\"\n ],\n \"not_leads\": [\n \"<string>\"\n ],\n \"is_company\": true,\n \"is_contract\": true,\n \"is_tracked\": true,\n \"ai_enabled\": true,\n \"search\": \"<string>\",\n \"has_icebreaker\": true,\n \"tags\": [\n \"<string>\"\n ],\n \"status\": [\n \"<string>\"\n ],\n \"has_list\": true,\n \"has_no_list\": true,\n \"lists\": [\n \"<string>\"\n ],\n \"has_owner\": true,\n \"has_no_owner\": true,\n \"owners\": [\n \"<string>\"\n ],\n \"score\": [\n \"<string>\"\n ],\n \"attributes\": [\n {\n \"id\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n },\n \"id_lead\": \"<string>\",\n \"id_list\": \"<string>\",\n \"is_done\": true,\n \"id_status\": \"<string>\",\n \"users\": [\n \"<string>\"\n ],\n \"search\": \"<string>\",\n \"late_tasks\": true,\n \"ai_generated\": true,\n \"ai_action_channel\": \"<string>\",\n \"ai_action_priority\": \"<string>\",\n \"date_from\": \"2023-11-07T05:31:56Z\",\n \"date_to\": \"2023-11-07T05:31:56Z\",\n \"no_date\": true\n },\n \"timezone\": \"<string>\",\n \"orderBy\": {\n \"field\": \"created_at\",\n \"type\": \"desc\"\n },\n \"pagination\": {\n \"page\": 1,\n \"page_size\": 50.5\n }\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"date": "<string>",
"name": "<string>",
"cron": "<string>",
"cron_id": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"is_deleted": true,
"is_done": true,
"ressource_link": "<string>",
"ai_generated": true,
"ai_action_channel": "<string>",
"ai_action_description": "<string>",
"ai_action_priority": "<string>",
"ai_action_reasoning": "<string>",
"ai_time_precision": "<string>",
"ai_followup_strategy": "<string>",
"ai_action_rationale": "<string>",
"ai_draft_subject": "<string>",
"ai_draft_message": "<string>",
"ai_draft_metadata": "<string>",
"id_lead": "<string>",
"id_space": "<string>"
}
],
"pagination": {
"page": 123,
"page_size": 123
}
}{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}