import { ProficientClient } from "@proficient/client";const proficient = new ProficientClient({ apiKey: process.env.PROFICIENT_AI_PUBLISHABLE_KEY, userExternalId: "...", // The user's unique ID in your system});const interactionId = "int_53mfKtX0Da6zaJCp5bNnzxDaEg1xptWvQDr2";const interaction = await proficient.interactions.update(interactionId, { // ... fields to update});
Updates the properties of the specified interaction. Only the provided properties will be updated. Any properties not provided will be left unchanged.
POST
/
interactions
/
{interaction_id}
Copy
import { ProficientClient } from "@proficient/client";const proficient = new ProficientClient({ apiKey: process.env.PROFICIENT_AI_PUBLISHABLE_KEY, userExternalId: "...", // The user's unique ID in your system});const interactionId = "int_53mfKtX0Da6zaJCp5bNnzxDaEg1xptWvQDr2";const interaction = await proficient.interactions.update(interactionId, { // ... fields to update});
import { ProficientClient } from "@proficient/client";const proficient = new ProficientClient({ apiKey: process.env.PROFICIENT_AI_PUBLISHABLE_KEY, userExternalId: "...", // The user's unique ID in your system});const interactionId = "int_53mfKtX0Da6zaJCp5bNnzxDaEg1xptWvQDr2";const interaction = await proficient.interactions.update(interactionId, { // ... fields to update});