Listar comentarios do item de acao
curl --request GET \
--url http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/comments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/comments', 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}/comments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/comments"
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))
}[
{
"id": "com_123",
"actionPointId": "ap_123",
"body": "Vamos priorizar isso na próxima rodada editorial.",
"createdAt": "2026-04-28T12:20:00.000Z"
}
]Listar comentarios do item de acao
GET
/
v1
/
workspaces
/
{workspaceId}
/
action-points
/
{actionPointId}
/
comments
Listar comentarios do item de acao
curl --request GET \
--url http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/comments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/comments', 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}/comments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:4000/v1/workspaces/{workspaceId}/action-points/{actionPointId}/comments"
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))
}[
{
"id": "com_123",
"actionPointId": "ap_123",
"body": "Vamos priorizar isso na próxima rodada editorial.",
"createdAt": "2026-04-28T12:20:00.000Z"
}
]Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.