cURL
curl --request PUT \ --url https://api.scrunchai.com/v1/brands/{brand_id}/personas/{persona_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>" } '
{ "id": 123, "name": "<string>", "description": "<string>" }
Update a persona
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Input model for updating a persona (full replace).
Display name of the persona.
Description of the persona.
Successful Response
Was this page helpful?