Skip to main content
PATCH
/
creators
/
{creator_id}
Update a creator
curl --request PATCH \
  --url https://api.creatoraudit.com/v2/creators/{creator_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "is_active": true,
  "metadata": {}
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "type": "creator",
    "is_active": false,
    "metadata": {},
    "accounts_summary": {
      "total": 0,
      "platforms": {},
      "total_followers": 0
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

creator_id
string<uuid>
required

Creator UUID.

Body

application/json
name
string | null

New creator name.

Required string length: 1 - 255
is_active
boolean | null

Activate or archive the creator.

metadata
Metadata · object

Replacement key/value tags (≤20 keys, ≤255 chars each).

Response

Successful Response

data
CreatorResponse · object
required