# Delete a Lab Test Report

Delete a specific[ lab test report](https://docs.suggestic.com/telewellness-portal/using-the-telewellness-portal/navigating-the-telewellness-portal/coach-dashboard/lab-tests-tab#access-to-the-lab-test-tab) by executing the `deleteLabTestReport` mutation.

## Required Argument

| **Argument Name** | **Type** | **Description**                                                                                                                                                                                       |
| ----------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`              | ID       | Unique lab test report Id. Use the [`labTestReports`](https://docs.suggestic.com/coaching-portal/api-references/lab-test-reports/lab-test-report-list) query to get the list of all lab test reports. |
| `memberId`        | ID       | Unique member id. Use the [`members`](https://docs.suggestic.com/coaching-portal/api-references/members/members-list) query to list the information of a all available members.                       |

## 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 deleted successfully. Otherwise, **Flase** |
|    `message`   |  String  |                              Description of the result                              |

## Example&#x20;

{% tabs %}
{% tab title="Request" %}

```graphql
mutation {
  deleteLabTestReport(
    id: "TGFiVGVzdFJlcG9ydDo3Nw=="
    memberId: "TGFiVGVzdFJlcG9ydDo3Nw=="
  ) {
    success
    message
  }
}

```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "deleteLabTestReport": {
      "success": true,
      "message": "Lab Test Report deleted"
    }
  }


```

{% endtab %}
{% endtabs %}
