/group/getnpc
To get the npc details for the group. Has 1 main requirements:
groupId
const npcDetails = await backend.post('/group/getnpc', {
groupId: '<Group ID>'
}).then((res) => res.data).catch(err => { });
Returns the npcId
that is part of the group. This NPC Id used to identify the expert who must answer the question. Each expert knows the user differently in a unique way.
Last updated