TeleWellness Portal
  • Introduction
  • HELPFUL RESOURCES
    • Getting Started
    • FAQ
      • Appointments
      • Meal Plan
  • User Management
    • Roles and Permissions
    • Manage Coaches
      • Coach tab
        • Register a new coach
          • Assign Members
        • Edit an existing coach
      • Calendar tab
        • Appointment Types
        • Appointment Alerts
      • Note Templates tab
    • Manage Members
      • Create a new member
      • Edit member's information
      • Filter members
  • Using the TeleWellness Portal
    • Login and logout to the Portal
    • Navigating the TeleWellness Portal
      • Home
      • Dashboard
      • Admin Dashboard
      • Coach Dashboard
        • Progress Tab
          • Filtering the information
          • Checking the user’s streak progress
          • Checking the user's activities progress
          • Showing the food log history
          • Checking the user's recap questions
          • Checking the user's weight log history
          • Showing user’s program journey
          • Checking user’s water intake history
        • Meal Plan tab
        • Notes tab
        • Appointments tab
        • Lab Tests tab
        • Wellness Plans tab
      • Messages
      • Meal Plans
        • Manage Meal Plans
          • From Scratch
          • Smart Meal Plan
      • Scheduling
      • Wellness Plan
        • Manage Protocols
        • Manage Wellness Plan Templates
    • Note Templates
  • API Reference
    • Generate Authorization Token
    • Appointments
      • Appointment Types
      • Add Appointment Credits
    • Coaches
      • Coach List
      • Update a Coach
      • Create a Coach
      • Invite Coach
    • Members
      • Member List
      • Members List
      • Program List
      • Update member's program
      • Assign Coach to Member
    • Lab Test Reports
      • Lab Test Report List
      • Create a Lab Test Report
      • Update Lab Test Report
      • Delete a Lab Test Report
    • Wellness Plans
      • Create a Supplement Plan for Member
      • Update Member Supplement
      • List Member Supplement Plans
      • Delete Member Supplement Plan
Powered by GitBook
On this page
  • Available Arguments
  • Available Fields
  • Example
  1. API Reference
  2. Lab Test Reports

Update Lab Test Report

Use the updateLabTestReport to update a lab test report assigned to a member.

Available Arguments

Argument Name

Is required?

Type

Description

id

Yes

ID

testName

No

String

Test report name

testDate

No

DateTime

Date and time of the report

labName

No

String

Laboratory name

reportPdf

No

Upload

URL of the lab test report

Available Fields

The following fields will be displayed in the response:

Field Name

Type

Description

success

Boolean

True if the lab test report has been updated successfully. Otherwise, Flase

message

String

Description of the result

report

Object

Example

mutation {
  updateLabTestReport(
    id: "TGFiVGVzdFJlcG9ydDo3MA=="
    testName: "Blood Test"
    labName: "Cleveland Lab"
    title: "Lab Report"
    testDate: "2022-02-01T05:00:00+00:00"
  ) {
    success
    message
    report {
      id
      testName
      reportPdf
      title
      testDate
    }
  }
}
{
  "data": {
    "updateLabTestReport": {
      "success": true,
      "message": "Lab test report updated",
      "report": {
        "id": "TGFiVGVzdFJlcG9ydDo3MA==",
        "testName": "Blood Test",
        "reportPdf": "lab-test/5ed99232-ca13-4a65-92b2-fc098f829e04/biEd0KdheG7A.pdf",
        "title": "Lab Report",
        "testDate": "2022-02-01T05:00:00+00:00"
      }
    }
  }
}
PreviousCreate a Lab Test ReportNextDelete a Lab Test Report

Last updated 1 year ago

Unique ID of the lab test. Execute the query to get the id of a lab test report

Object that returns the list of .

labTestReports
lab test report fields