Skip to main content
POST
/
v1
/
companies
/
:id
/
notes
Create Company Note
curl --request POST \
  --url https://api.example.com/v1/companies/:id/notes \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "content": "<string>",
  "note_type": "<string>",
  "tags": [
    {}
  ]
}
'
{
  "data": {}
}

Request

Path Parameters

id
string
required
Company ID (UUID)

Body Parameters

title
string
required
Note title
content
string
Note content (max 50,000 characters)
note_type
string
default:"general"
Note type
tags
array
Array of tag strings

Headers

Authorization: Bearer wbk_your_api_key_here
Content-Type: application/json

Response

data
object
Note object with id, title, content, note_type, tags, created_date
curl -X POST https://data.leadlex.com/functions/v1/api-gateway/v1/companies/co-001/notes \
  -H "Authorization: Bearer wbk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{ "title": "Industry research", "content": "Key findings about the legal tech market" }'

Errors

StatusCodeDescription
400validation_errorMissing title
404not_foundCompany not found
403insufficient_permissionsMissing companies:write permission