Doctorlink has joined HealthHerohealthheroLearn More
doctorlink

Conclusion

Introduction
Request
Response
Definitions

Introduction

Once you've reached the end of your traversal - indicated by the empty node array on the response - you may call the conclusions endpoint (ReDoc).

This is a simple GET request to .../api/v2/{tenantId}/Traversals/{traversalId}/conclusions, and will return an array of Conclusion objects, shown below.

Note: if you're using the Online triage (aka Symptom Assessment) you may want to call the Conclusion Report, which will be ordered and categorised in a more meaningful way for you.

Request

curl ".../api/v2/{tenantId}/Traversals/{traversalId}/conclusions" \
  -X "GET" \
  -H "Authorization: Bearer ACCESS_TOKEN" \

Response

[
  {
    category1: "string",
    subCategory: "string",
    category2: "string",
    title: "string",
    moreDetail: "string",
    priority: int,
    propertyPriority: int,
    information: boolean,
    categoryTypeId: int,
    silent: boolean,
    data: {},
    algoId: int,
    nodeId: int,
    assetId: int,
    groupId: int,
    displayText: "string",
    clinicalText: "string",
    counter: int,
    nextNodeId: int,
    explanation: "string",
    bullets: [
      {
        data: {},
        bulletId: int,
        bulletUniqueId: int,
        conclusionId: int,
        priority: int,
        displayText: "string",
        category2: "string",
      },
    ],
    truncated: "string",
  },
];

Definitions

Category1 : ...

Subcategory : ...