> For the complete documentation index, see [llms.txt](https://docs.suggestic.com/telewellness-portal/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.suggestic.com/telewellness-portal/api-reference/wellness-plans/delete-member-supplement-plan.md).

# Delete Member Supplement Plan

Use the `deleteSupplementPlan` mutation to create and assign a supplement plan to a member.

## Required Arguments

|              |          |                        |
| ------------ | -------- | ---------------------- |
| **Argument** | **Type** | **Description**        |
| `id`         | ID!      | Id of supplement plan. |

## Available fields

|           |          |                                                                        |
| --------- | -------- | ---------------------------------------------------------------------- |
| **Field** | **Type** | **Description**                                                        |
| `success` | Boolean  | **True** if the supplement plan has been deleted, Otherwise **False.** |
| `message` | String   | Description of the result.                                             |

## Example

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

```graphql
mutation {deleteSupplementPlan(
  id:"U3VwcGxlbWVudFBsYW46MzMzNDU="
){
  success
  message
  }
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "deleteSupplementPlan": {
      "success": true,
      "message": "Supplement plan deleted"
    }
  }
}
```

{% endtab %}
{% endtabs %}
