Skip to main content
POST
/
v1
/
findings
Create a finding
curl --request POST \
  --url https://api.zelto.ai/v1/findings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": {},
  "status": "open",
  "priority": "none",
  "tags": [],
  "findingType": 123,
  "conversationIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "analyzedFromDate": "2023-11-07T05:31:56Z",
  "analyzedToDate": "2023-11-07T05:31:56Z"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "tags": [
    "<string>"
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "description": {},
  "findingType": 123,
  "assigneeUserId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Send Authorization: Bearer YOUR_API_KEY. The key resolves to a single organization.

Body

application/json
title
string
required
Minimum string length: 1
description
object

TipTap JSON document.

status
enum<string>
default:open
Available options:
open,
acknowledged,
resolved,
ignored
priority
enum<string>
default:none
Available options:
none,
low,
medium,
high,
urgent
tags
string[]
findingType
integer | null
conversationIds
string<uuid>[]

Optional conversation UUIDs to attach to the new finding on creation.

analyzedFromDate
string<date-time>

Optional start of the analyzed time range this finding summarizes.

analyzedToDate
string<date-time>

Optional end of the analyzed time range this finding summarizes.

Response

Created finding.

id
string<uuid>
required
title
string
required
status
enum<string>
required
Available options:
open,
acknowledged,
resolved,
ignored
priority
enum<string>
required
Available options:
none,
low,
medium,
high,
urgent
tags
string[]
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
description
object

TipTap JSON document.

findingType
integer | null
assigneeUserId
string<uuid> | null