OK
const response = await fetch('//api/application/history-snapshots', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "message": "text", "data": false, "success": false }
const response = await fetch('//api/application/history-snapshots/{applicationId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "message": "text", "success": false }
const response = await fetch('//api/application/history-snapshots/{applicationId}/{snapshotId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "message": "text", "data": {}, "success": false }