curl --request PUT \
--url https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Fazer deploy",
"completed_at": null,
"completion_deadline": "2026-12-31 18:00:00",
"author_id": null,
"checked_by_id": null,
"order": 0
}
'import requests
url = "https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}"
payload = {
"name": "Fazer deploy",
"completed_at": None,
"completion_deadline": "2026-12-31 18:00:00",
"author_id": None,
"checked_by_id": None,
"order": 0
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Fazer deploy',
completed_at: null,
completion_deadline: '2026-12-31 18:00:00',
author_id: null,
checked_by_id: null,
order: 0
})
};
fetch('https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}', 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/projects/{project}/loose-checklist/{loose_checklist}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Fazer deploy',
'completed_at' => null,
'completion_deadline' => '2026-12-31 18:00:00',
'author_id' => null,
'checked_by_id' => null,
'order' => 0
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}"
payload := strings.NewReader("{\n \"name\": \"Fazer deploy\",\n \"completed_at\": null,\n \"completion_deadline\": \"2026-12-31 18:00:00\",\n \"author_id\": null,\n \"checked_by_id\": null,\n \"order\": 0\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.put("https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Fazer deploy\",\n \"completed_at\": null,\n \"completion_deadline\": \"2026-12-31 18:00:00\",\n \"author_id\": null,\n \"checked_by_id\": null,\n \"order\": 0\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Fazer deploy\",\n \"completed_at\": null,\n \"completion_deadline\": \"2026-12-31 18:00:00\",\n \"author_id\": null,\n \"checked_by_id\": null,\n \"order\": 0\n}"
response = http.request(request)
puts response.read_body{
"response": true
}Atualizar checklist avulso
Atualiza um item de checklist avulso. Todos os campos do body são opcionais — envie apenas o que deve mudar.
Atribuir um novo responsável (author_id) notifica o usuário escolhido. Alterar order reposiciona o item na lista; os itens vizinhos são deslocados automaticamente. Enviar completion_deadline: null remove o prazo; omitir o campo mantém o valor atual.
curl --request PUT \
--url https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Fazer deploy",
"completed_at": null,
"completion_deadline": "2026-12-31 18:00:00",
"author_id": null,
"checked_by_id": null,
"order": 0
}
'import requests
url = "https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}"
payload = {
"name": "Fazer deploy",
"completed_at": None,
"completion_deadline": "2026-12-31 18:00:00",
"author_id": None,
"checked_by_id": None,
"order": 0
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Fazer deploy',
completed_at: null,
completion_deadline: '2026-12-31 18:00:00',
author_id: null,
checked_by_id: null,
order: 0
})
};
fetch('https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}', 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/projects/{project}/loose-checklist/{loose_checklist}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Fazer deploy',
'completed_at' => null,
'completion_deadline' => '2026-12-31 18:00:00',
'author_id' => null,
'checked_by_id' => null,
'order' => 0
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}"
payload := strings.NewReader("{\n \"name\": \"Fazer deploy\",\n \"completed_at\": null,\n \"completion_deadline\": \"2026-12-31 18:00:00\",\n \"author_id\": null,\n \"checked_by_id\": null,\n \"order\": 0\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.put("https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Fazer deploy\",\n \"completed_at\": null,\n \"completion_deadline\": \"2026-12-31 18:00:00\",\n \"author_id\": null,\n \"checked_by_id\": null,\n \"order\": 0\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.olie.ai/api/management/projects/{project}/loose-checklist/{loose_checklist}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Fazer deploy\",\n \"completed_at\": null,\n \"completion_deadline\": \"2026-12-31 18:00:00\",\n \"author_id\": null,\n \"checked_by_id\": null,\n \"order\": 0\n}"
response = http.request(request)
puts response.read_body{
"response": true
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Path Parameters
ID (UUID) do projeto.
ID (UUID) do item de checklist avulso.
Body
Campos a alterar no item. Todos são opcionais.
Texto do item de checklist.
255Data de conclusão. null desmarca o item.
Prazo de conclusão do item. null remove o prazo.
Usuário responsável pelo item.
Usuário que marcou o item como concluído.
Nova posição do item na lista.
x >= 0Response
Sucesso
Confirmação de que a operação foi concluída.
Sempre true quando a operação é concluída.
Was this page helpful?