Retrieve information about this service
GET
/service-info
const url = 'https://example.com/service-info';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/service-infoReturns information about the ingest service
Responses
Section titled “ Responses ”Retrieve info about the ingest service
Media type application/json
object
Example generated
{}