> ## Documentation Index
> Fetch the complete documentation index at: https://developers.supapost.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Influencer

> Update an existing influencer's details or images.

## Path Parameters

<ParamField path="id" type="string" required>
  Influencer ID.
</ParamField>

## Body Parameters

All fields are optional. Only provided fields will be updated.

<ParamField body="name" type="string">Influencer name.</ParamField>
<ParamField body="description" type="string">Description / prompt used to generate.</ParamField>
<ParamField body="style" type="string">Art style: `realistic`, `anime`, `3d`, `fashion`, `minimal`.</ParamField>
<ParamField body="model" type="string">AI model used (e.g. `fal:flux-pro`, `higgsfield:soul`).</ParamField>
<ParamField body="images" type="string[]">Array of image URLs. The first image is used as the avatar.</ParamField>
<ParamField body="traits" type="object">Character traits (demographics, face, hair, body, style).</ParamField>

## Response

```json 200 theme={null}
{
  "id": "inf-uuid",
  "name": "Amy",
  "description": "A young woman...",
  "style": "realistic",
  "model": "fal:flux-pro",
  "images": ["https://cdn.supapost.so/assets/...", "..."],
  "updated_at": "2026-04-09T12:00:00Z"
}
```
