Upsert Identity Properties
client.identities.properties.upsert(stringidentityID, PropertyUpsertParams { body } params, RequestOptionsoptions?): PropertyUpsertResponse
/v1/identities/{identity_id}/properties
Upsert Identity Properties
Parameters
Returns
PropertyUpsertResponse = unknown
Upsert Identity Properties
import Letta from '@letta-ai/letta-client';
const client = new Letta({
apiKey: 'My API Key',
});
const response = await client.identities.properties.upsert('identity-123e4567-e89b-42d3-8456-426614174000', {
body: [{ key: 'key', type: 'string', value: 'string' }],
});
console.log(response);
{}Returns Examples
{}