Skip to main content
PATCH
/
model
/
{id}
Update Model
curl --request PATCH \
  --url https://api.fish.audio/model/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "cover_image": "<string>",
  "visibility": "public",
  "tags": [
    "<string>"
  ]
}
'
{
  "status": 123,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

title
string | null
description
string | null
cover_image
file | null
visibility
enum<string> | null
Available options:
public,
unlist,
private
tags

Response

Request fulfilled, document follows