Skip to main content
POST
/
v1
/
activities
/
bulk
Bulk create activities
curl --request POST \
  --url https://api.octolane.com/v1/activities/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
[
  {
    "title": "<string>",
    "description": "<string>",
    "participants": [],
    "domains": [],
    "metadata": {},
    "created_at": "2023-11-07T05:31:56Z"
  }
]
'
{
  "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 activity payloads. Maximum 100 items.

Required array length: 1 - 100 elements
activity_type
enum<string>
required
Available options:
EMAIL,
MEETING,
EMAIL_OPEN,
LINK_CLICK,
CALL,
COMMENT,
IN_PERSON_MEETING,
LINKEDIN_CONNECTION,
LINKEDIN_MESSAGE,
X_ACTIVITY,
TEXT_MESSAGE,
WHATSAPP_MESSAGE,
CONTACT_ADDED,
OTHER
title
string
required
description
string | null
participants
string<email>[]
domains
string[]
metadata
object
created_at
string<date-time> | null

Response

Activities were created.

success
boolean
Example:

true

message
string
data
any

Endpoint-specific response payload.