POST
/
v0
/
person-activities
curl --request POST \
  --url https://api.stardex.ai/v0/person-activities \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "linkedin_url": "<string>",
  "email": "jsmith@example.com",
  "full_name": "<string>",
  "person_id": "<string>",
  "activity_type": "secondary_note",
  "activity_content": "<string>"
}'
{
  "error": "<string>",
  "data": {
    "id": "<string>",
    "person_id": "<string>",
    "activity_type": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your_api_key_here

Body

application/json
activity_type
enum<string>
required

Type of activity to create

Available options:
secondary_note,
meeting_note,
email,
interview_note,
linkedin_message,
text_message,
candidate_summary,
linkedin_message_response,
call_note
linkedin_url
string

LinkedIn profile URL of the person

email
string

Email of the person

full_name
string

Full name of the person

person_id
string

ID of the person

activity_content
string

Text of the activity

Response

201
application/json
Successful response
error
string | null
required

Error message, if any

data
object
required