/npc/info

This endpoint returns the npc information given their username. It is secondary to userID and helps to uniquely identify the expert. Has 1 main requirement:

  1. username

const response = await backend.post('/npc/info', {
      username: '<USERNAME>
}).then(res => res?.data).catch(err => {});

This method returns all the key information on the npc including name, npcId, username, imageUrl, and jobTitle.

Last updated