Skip to main content
POST
/
v1
/
notes
/
bulk
Bulk create notes
curl --request POST \
  --url https://api.octolane.com/v1/notes/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
[
  {
    "note": {
      "title": "<string>",
      "content": "<string>"
    },
    "account_domains": [
      "<string>"
    ],
    "contact_emails": [
      "jsmith@example.com"
    ]
  }
]
'
{
  "success": true,
  "message": "<string>",
  "data": "<unknown>"
}

Authorizations

x-api-key
string
header
required

Public API key for the Octolane organization.

Body

application/json

Array of note payloads. Maximum 100 items.

Required array length: 1 - 100 elements
note
object
required
account_domains
string[] | null
contact_emails
string<email>[] | null

Response

Notes were created.

success
boolean
Example:

true

message
string
data
any

Endpoint-specific response payload.