# Disable Multiple Carriers

## /v1/carriers/multiple/disable

<mark style="color:green;">`POST`</mark> `https://api.terminal.africa/v1/carriers/multiple/disable`

This endpoint allows you to disable multiple carriers in a single call.

#### Headers

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Set value to `Bearer SECRET_KEY` |
| Content-Type                                    | String | Set value to `application/json`  |

#### Request Body

| Name                                       | Type   | Description                                                                                                      |
| ------------------------------------------ | ------ | ---------------------------------------------------------------------------------------------------------------- |
| carriers<mark style="color:red;">\*</mark> | Object | List of [***Carrier Objects***](https://docs.terminal.africa/tship/miscallaneous/carrier-object) to be disabled. |

{% tabs %}
{% tab title="200: OK Carriers Disabled Successfully." %}

```javascript
{
    "status": true,
    "message": "Carrier Disabled Successfully",
    "data": {
        "domestic": [
            "CA-58583827047",
            "CA-86012707216",
            "CA-81957188177",
            "CA-31377601348",
            "CA-71017347351",
            "CA-85479996273",
            "CA-49411197653",
            "CA-19429970231",
            "CA-39897596546"
        ],
        "international": [
            "CA-31377601348",
            "CA-81957188177",
            "CA-89391853795",
            "CA-85479996273",
            "CA-19429970231",
            "CA-49411197653",
            "CA-39897596546"
        ],
        "regional": [
            "CA-86012707216",
            "CA-31377601348",
            "CA-81957188177",
            "CA-85479996273",
            "CA-71017347351",
            "CA-49411197653",
            "CA-19429970231",
            "CA-39897596546"
        ]
    }
}
```

{% endtab %}
{% endtabs %}
