Simulation Persona
Update a persona
Updates an existing persona by its ID.
put/v1/persona/{personaId}
Path parameters
personaIdstring required
The ID of the persona to update
Request body
Example request
{
"backstoryPrompt": "A busy professional calling during lunch break",
"properties": {
"age": 35,
"zipCode": "94105",
"occupation": "Software Engineer"
}
}Response
The updated persona
Example response
{
"data": {
"backstoryPrompt": "A busy professional calling during lunch break",
"properties": {
"age": 35,
"zipCode": "94105",
"occupation": "Software Engineer"
}
}
}