Upsert Identity Properties
identities.properties.upsert(stridentity_id, PropertyUpsertParams**kwargs) -> object
/v1/identities/{identity_id}/properties
Upsert Identity Properties
Parameters
Returns
object
Upsert Identity Properties
from letta_client import Letta
client = Letta(
api_key="My API Key",
)
response = client.identities.properties.upsert(
identity_id="identity-123e4567-e89b-42d3-8456-426614174000",
body=[{
"key": "key",
"type": "string",
"value": "string",
}],
)
print(response)
{}Returns Examples
{}