Criar item de checklist
curl --request POST \
--url http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({label: '<string>'})
};
fetch('http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist"
payload = { "label": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist"
payload := strings.NewReader("{\n \"label\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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))
}{
"id": "chk_123",
"actionPointId": "ap_123",
"label": "Reescrever H1 e introdução",
"done": false,
"createdAt": "2026-04-28T12:21:00.000Z"
}Criar item de checklist
POST
/
v1
/
workspaces
/
{workspaceId}
/
action-points
/
{actionPointId}
/
checklist
Criar item de checklist
curl --request POST \
--url http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({label: '<string>'})
};
fetch('http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist"
payload = { "label": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/checklist"
payload := strings.NewReader("{\n \"label\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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))
}{
"id": "chk_123",
"actionPointId": "ap_123",
"label": "Reescrever H1 e introdução",
"done": false,
"createdAt": "2026-04-28T12:21:00.000Z"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json