> For the complete documentation index, see [llms.txt](https://docs.tsgglobal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tsgglobal.com/api-reference/phone-numbers/manage-number-for-mms/disable-mms-on-a-number.md).

# Disable MMS on a Number

Turn off MMS on a phone number. The number keeps its SMS configuration.

## Overview

This method allows you to disable MMS on a phone number.

## Authentication

{% hint style="info" %}
Authentication is done by passing your TSG Global API key via the Authorization header in the format "Authorization: Bearer \<api\_key>"
{% endhint %}

## Method

## Disable MMS on a phone number.

<mark style="color:green;">`POST`</mark> `https://api-service.tsgglobal.world/v2/dids/<number>/mms/disable`

#### Path Parameters

| Name                                     | Type   | Description                           |
| ---------------------------------------- | ------ | ------------------------------------- |
| number<mark style="color:red;">\*</mark> | string | The phone number you want to disable. |

The response is the number's updated SMS/MMS configuration, in the same shape as [Enable MMS on a Number](/api-reference/phone-numbers/manage-number-for-mms/enable-mms-on-a-number.md), with `mms_enabled` set to `false`.

{% tabs %}
{% tab title="200: OK " %}

```json
{
  "mms_enabled": false,
  "mms_uri": null,
  "number": "12342341234",
  "sms_enabled": true,
  "sms_uri": null
}
```

{% endtab %}
{% endtabs %}

## Example CURL

```bash
curl https://api-service.tsgglobal.world/v2/dids/12342341234/mms/disable -XPOST -H "Authorization: Bearer <api_key>"
```
