# deleteSocialProfileView

Mutation

Hard-delete a saved Social Profile view.

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

## Arguments

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `id` | `ID!` | Yes | — | FilterPreset UUID of the social profile view to delete. |

## Returns

| Name | Type | Description |
| --- | --- | --- |
| `deletedSocialProfileViewId` | `ID` | ID of the deleted social profile view. Null when no such view exists in the workspace. |
| `userErrors` | [`[UserError!]!`](/api/v2/docs/types/user-error) | List of user-facing errors. Populated only when deletion failed. |

## Examples

### Delete a social profile view

Hard-delete a saved Social Profile view.

```graphql
mutation DeleteSocialProfileViewDefault($id: ID!) {
  deleteSocialProfileView(id: $id) {
    deletedSocialProfileViewId
    userErrors {
      field
      message
    }
  }
}
```

Variables:

```json
{
  "id": "6f36548f-6fec-5322-96e7-8ae179b96c04"
}
```

Response — HTTP 200:

```json
{
  "data": {
    "deleteSocialProfileView": {
      "deletedSocialProfileViewId": "6f36548f-6fec-5322-96e7-8ae179b96c04",
      "userErrors": []
    }
  }
}
```
