Get content of a log file
Name of the log file to return
"3c6e4cb4-9b74-40c8-8f4a-132c9d5e4ace.log"
Successful operation
"this is the log content"
const response = await fetch('https://virtserver.swaggerhub.com/strongcourage/MAIP/v1/logs/{fileName}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "content": "this is the log content" }