Skip to main content
PUT
/
simulate
/
api
/
personas
/
{id}
/
Update persona
curl --request PUT \
  --url https://api.futureagi.com/simulate/api/personas/{id}/ \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Secret-Key: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "gender": [
    "<string>"
  ],
  "age_group": [
    "<string>"
  ],
  "location": [
    "<string>"
  ],
  "occupation": [
    "<string>"
  ]
}'

Authorizations

X-Api-Key
string
header
required

API Key for authentication. Click here to access API Key

X-Secret-Key
string
header
required

Secret Key for authentication. Click here to access Secret Key

Path Parameters

id
string<uuid>
required

Body

application/json
name
string
description
string
gender
string[]
age_group
string[]
location
string[]
occupation
string[]

Response

200

Persona updated