GET
/
v1
/
persons
/
{id}
/
activities
Get person activities
curl --request GET \
  --url https://api.stardex.ai/v1/persons/{id}/activities \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "activity_type": "meeting_note",
      "id": "901e2345-e67f-89g0-h123-456789012345",
      "created_at": "2024-01-15T10:30:00Z",
      "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."
    }
  ],
  "meta": {
    "total": 15,
    "offset": 0,
    "limit": 20
  }
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your_api_key_here

Path Parameters

id
string
required

Person ID

Query Parameters

offset
integer | null
default:0

Number of records to skip

Required range: x >= 0
limit
integer
default:100

Maximum number of records to return (1-100)

Required range: 1 <= x <= 100

Response

Activities fetched

The response is of type object.