跳转到主要内容
DELETE
/
suno
/
persona
Suno Persona Delete
curl --request DELETE \
  --url https://api.acedata.cloud/suno/persona \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.acedata.cloud/suno/persona"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.acedata.cloud/suno/persona', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true
}

授权

Authorization
string
header
必填

查询参数

persona_id
string
必填

Suno Persona Param Persona Id

user_id
string

Suno Persona Param User Id 2

响应

200 - application/json

Suno Persona Response 200 4

success
boolean

Suno Persona Response 200 Success 2