cURL
curl --request PATCH \ --url https://api.stardex.ai/v1/person-activities/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "activity_content": "This is plain text content", "content_type": "text" } '
{ "success": true, "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "updated_at": "2024-03-15T12:00:00Z" } }
Update the content of an existing person activity. Supports plain text and HTML content formats.
Enter your API key as: Bearer your_api_key_here
Bearer your_api_key_here
Person activity ID
Content to update the activity with. Can be plain text or HTML depending on content_type
"This is plain text content"
Format of the provided content
text
html
"text"
Activity updated
Show child attributes
Was this page helpful?