Get an indication survey answer template
GET
/prescription/survey/{lang}/{idIndicationSurvey}/template
const url = 'https://example.com/prescription/survey/en/example/template';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/prescription/survey/en/example/template \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”lang
required
string
Example
enidIndicationSurvey
required
string
Responses
Section titled “Responses”Indication survey answer template returned.
