Synchronising Output
2 min
in the embedded web app integration, when a user completes a conversation and selects the button "approve and synchronise" in the app, autoscriber will do a \<font color="#ef4444">post\</font> to the webhook url included in the request body provided in call api endpoint docid\ qym9d7go7rkhsun55gzp6 , referenced as per the below "webhook" { "url" "https //example com/webhook", "headers" {"authorization" "bearer your token here"} } this post from autoscriber will contain the template name, headings and content an example can be seen as follows { "standard en" { "final" true, "data" \[ { "items" \[ { "sentences" \[], "text" "strong heachaches since 5 days" } ], "section" "subjectief" }, { "items" \[ { "sentences" \[], "text" "refer to neurologist" } ], "section" "plan" } ], "count" 1, "feedback" {}, "error" false } } the \<font color="#ef4444">count\</font> represents the order of the generated note for example, if the user generates the initial template, and then decides to generate another note using a different template, then the \<font color="#ef4444">count\</font> of the second note will be 2 the \<font color="#ef4444">feedback\</font> is populated with the feedback the user gave after the note was generated the \<font color="#ef4444">error\</font> is populated with an error message if applicable
