Skip to main content

kb-infoboxes

const kbInfoBoxes = async (input, config) => {
const response = await axios.post('knowledgebase/infoboxes', input, config)
return response.data;
};

input = {
ids: ['G458', 'G567'],
language: 'fr'
};

kbInfoBoxes(input, config).then(report);