GET
/
v1
/
person-activities
/
{id}
Get person activity by ID
curl --request GET \
  --url https://api.stardex.ai/v1/person-activities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "901e2345-e67f-89g0-h123-456789012345",
    "person_id": "123e4567-e89b-12d3-a456-426614174000",
    "activity_type": "meeting_note",
    "activity_content": "<p>Had a great conversation about the role requirements. The candidate showed strong technical skills and cultural fit.</p>",
    "activity_raw_content": "Had a great conversation about the role requirements. The candidate showed strong technical skills and cultural fit.",
    "created_at": "2024-01-15T10:30:00Z"
  }
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your_api_key_here

Path Parameters

id
string
required

Person activity ID

Response

Activity fetched

The response is of type object.