create_avatar_handler
POST
/api/auth/v1/avatar/
const url = 'https://example.com/api/auth/v1/avatar/';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/auth/v1/avatar/Responses
Section titled “ Responses ”Deletion success