Skip to main content
PATCH
/
personas
/
{personaId}
Update persona
curl --request PATCH \
  --url https://rawugc.com/api/v1/personas/{personaId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>",
  "errors": {}
}

Authorizations

Authorization
string
header
required

Use your API key from the RawUGC dashboard. Include as: Authorization: Bearer YOUR_API_KEY

Path Parameters

personaId
string
required

Persona ID

Body

application/json
name
string

Updated persona name

Required string length: 1 - 200
description
string

Updated persona description

Required string length: 1 - 5000

Response

Persona updated successfully