Launching Mindoo

Overview

  1. Create a preconsultation link by sending a POST request to https://api.mindoo.ai/invitation/create

This request should include a body of type

{ firstName: string; lastName: string }

and will return a response of shape

{ invitationUrl: string; id: string }

The invitationUrl returned by this endpoint can be sent to the patient. The patient will be able to conduct their preconsultation interview via the Mindoo web interface.

Once the preconsultation interview has been completed, the results can be fetched (e.g. by polling) by sending a GET request to https://api.mindoo.ai/invitation/get/{id}.