# pluginValueUpdate

**Scope required:** admin:write

For a complete list of input attributes see the [PluginValueAttributes](https://docs.bunny.com/developer/api-reference/types/pluginvalueattributes) type

```graphql
mutation pluginValueUpdate ($id: ID!, $attributes: PluginValueAttributes!) {
  pluginValueUpdate (id: $id, attributes: $attributes) {
      errors
      pluginValue {
        id
        pluginId
        pluginParameterId
      }
  }
}
```

## Arguments

```json
{
  "id": "456123",
  "attributes": {
    "pluginParameterId": "456123",
    "pluginId": "456123",
    "value": ""
  }
}
```

| Name       | Type                                                                                                | Description |
| ---------- | --------------------------------------------------------------------------------------------------- | ----------- |
| id         | ID                                                                                                  |             |
| attributes | [PluginValueAttributes](https://docs.bunny.com/developer/api-reference/types/pluginvalueattributes) |             |

## Response

| Name        | Type                                                                            | Description |
| ----------- | ------------------------------------------------------------------------------- | ----------- |
| errors      | List (String)                                                                   |             |
| pluginValue | [PluginValue](https://docs.bunny.com/developer/api-reference/types/pluginvalue) |             |
