Get a Health Navigator message
GET
/v2/health-navigator/messages/{messageId}
const url = 'https://example.com/v2/health-navigator/messages/example';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/v2/health-navigator/messages/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”messageId
required
string
Responses
Section titled “Responses”Message found.
