Skip to main content
POST
/
zapier
/
zap-add-activity
Zapier: Add Activity
curl --request POST \
  --url https://api.stardex.ai/zapier/zap-add-activity \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "activity_type": "secondary_note",
  "note_content": "<string>",
  "name": "<string>",
  "linkedin_url": "<string>",
  "email": "jsmith@example.com",
  "emails": "<string>",
  "phone": "<string>",
  "description": "<string>",
  "job_title": "<string>"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "created_activities": [
      {
        "activity_id": "<string>",
        "person_id": "<string>",
        "email": "<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
Available options:
secondary_note,
meeting_note,
meeting_transcript,
email,
interview_note,
linkedin_message,
text_message,
candidate_summary,
linkedin_message_response,
call_note,
client_note
note_content
string
required
Minimum length: 1
name
string
linkedin_url
string<uri>
email
string<email>
emails
phone
string
description
string
job_title
string

Response

Activity created successfully

success
boolean
required
message
string
required
data
object
required