[comment]: # ({97b0e55a-97b0e55a})
# mediatype.update

[comment]: # ({/97b0e55a-97b0e55a})

[comment]: # ({ba868bc0-ba868bc0})
### Description

`object mediatype.update(object/array mediaTypes)`

This method allows to update existing media types.

[comment]: # ({/ba868bc0-ba868bc0})

[comment]: # ({b3d806d9-b3d806d9})
### Parameters

`(object/array)` [Media type properties](object#media_type) to be
updated.

The `mediatypeid` property must be defined for each media type, all
other properties are optional. Only the passed properties will be
updated, all others will remain unchanged.

[comment]: # ({/b3d806d9-b3d806d9})

[comment]: # ({665d000d-665d000d})
### Return values

`(object)` Returns an object containing the IDs of the updated media
types under the `mediatypeids` property.

[comment]: # ({/665d000d-665d000d})

[comment]: # ({b41637d2-b41637d2})
### Examples

[comment]: # ({/b41637d2-b41637d2})

[comment]: # ({6fbe70a1-6fbe70a1})
#### Enabling a media type

Enable a media type, that is, set its status to 0.

Request:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "mediatype.update",
    "params": {
        "mediatypeid": "6",
        "status": 0
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

Response:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": {
        "mediatypeids": [
            "6"
        ]
    },
    "id": 1
}
```

[comment]: # ({/6fbe70a1-6fbe70a1})

[comment]: # ({0fdd99a1-0fdd99a1})
### Source

CMediaType::update() in
*frontends/php/include/classes/api/services/CMediaType.php*.

[comment]: # ({/0fdd99a1-0fdd99a1})
