Files
ai_mip/localAPI-main/js-examples/example-delete-profile-cache.js

16 lines
276 B
JavaScript
Raw Normal View History

2026-01-13 18:59:26 +08:00
const axios = require('axios');
const config = {
method: 'post',
url: 'http://localhost:50325/api/v1/user/delete-cache',
headers: { }
};
axios(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});