Last updated 7 months ago
Successful Response
const response = await fetch('/api/v1/organizations/self/view-configs', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "path": "text" }), }); const data = await response.json();
{}
const response = await fetch('/api/v1/legacy/users/me/view-configs?path=text', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/api/v1/legacy/users/me/view-configs', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "path": "text" }), }); const data = await response.json();