# updateSocialProfileView

Mutation

Partial-update a saved Social Profile view.

Available to agents as MCP tool `updateSocialProfileView` — see [Write tools](/api/v2/docs/mcp/write-tools#update-social-profile-view).

## Arguments

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `id` | `ID!` | Yes | — | FilterPreset UUID of the social profile view to update. |
| `input` | [`UpdateSocialProfileViewInput!`](/api/v2/docs/types/update-social-profile-view-input) | Yes | — | Partial-update input. Only provided fields are updated. |

## Returns

| Name | Type | Description |
| --- | --- | --- |
| `socialProfileView` | [`SocialProfileView`](/api/v2/docs/types/social-profile-view) | The updated social profile view. Null on validation failure or when the view was not found. |
| `userErrors` | [`[UserError!]!`](/api/v2/docs/types/user-error) | List of user-facing validation errors. Empty on success. |

## Examples

### Update a social profile view

Partial-update a saved Social Profile view.

```graphql
mutation UpdateSocialProfileViewDefault($id: ID!, $input: UpdateSocialProfileViewInput!) {
  updateSocialProfileView(id: $id, input: $input) {
    socialProfileView {
      id
      name
      filters
    }
    userErrors {
      field
      message
    }
  }
}
```

Variables:

```json
{
  "id": "6f36548f-6fec-5322-96e7-8ae179b96c04",
  "input": {
    "name": "Northwind Creators (Renamed)"
  }
}
```

Response — HTTP 200:

```json
{
  "data": {
    "updateSocialProfileView": {
      "socialProfileView": {
        "id": "6f36548f-6fec-5322-96e7-8ae179b96c04",
        "name": "Northwind Creators (Renamed)",
        "filters": {}
      },
      "userErrors": []
    }
  }
}
```
