api_creators_destroy
DELETE
/api/creators/{id}/
const url = 'https://example.com/api/creators/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/';const options = {method: 'DELETE', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/api/creators/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/ \ --header 'Authorization: <Authorization>'创建者管理ViewSet
id
必填
string format: uuid
用于标识此创建者的 UUID 字符串。
无响应正文