Update Profile Vectors
Endpoint
GET /v1/profiles/{profileId}/update-vectors
Description
Triggers a vector update for the specified profile. This operation is used to recalculate vector embeddings or other internal representations associated with the user profile, based on its current state or content.
The update is forwarded to a downstream service via a POST
request, but this endpoint itself is exposed as a GET
for clients.
Request
Path Parameters
Parameter | Type | Required | Description |
---|---|---|---|
profileId | string | ✓ | The unique identifier of the profile |
Headers
Header | Required | Description |
---|---|---|
Authorization | ✓ | Bearer YOUR_API_KEY |
Success Response — 200 OK
Returns the downstream response after updating the vectors:
{
"id": "up_2caed28f18c34d83982e3bcd9cffbb96",
"created": "2025-07-03T10:20:52.0773442Z",
"object": "update_profile",
"status": "completed"
}