Skip to main content
POST
/
v3
/
workspaces
/
{workspace_id}
/
conclusions
Create Conclusions
curl --request POST \
  --url https://api.honcho.dev/v3/workspaces/{workspace_id}/conclusions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conclusions": [
    {
      "content": "<string>",
      "observer_id": "<string>",
      "observed_id": "<string>",
      "session_id": "<string>"
    }
  ]
}
'
[
  {
    "id": "<string>",
    "content": "<string>",
    "observer_id": "<string>",
    "observed_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "session_id": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

Body

application/json

Batch of Conclusions to create

conclusions
ConclusionCreate · object[]
required
Required array length: 1 - 100 elements

Response

Successful Response

id
string
required
content
string
required
observer_id
string
required

The peer who made the conclusion

observed_id
string
required

The peer the conclusion is about

created_at
string<date-time>
required
session_id
string | null