Simulation Persona
Create a new persona
Creates a new persona for the authenticated project.
post/v1/persona
Request body
Example request
{
"backstoryPrompt": "A busy professional calling during lunch break",
"properties": {
"age": 35,
"zipCode": "94105",
"occupation": "Software Engineer"
}
}Response
The created persona
Example response
{
"data": {
"backstoryPrompt": "A busy professional calling during lunch break",
"properties": {
"age": 35,
"zipCode": "94105",
"occupation": "Software Engineer"
}
}
}