# Delete SSH identity

Deletes an SSH identity.

Required permission: Account > Platform > Ssh > Delete

**Path parameters:**

{object}
- `identityId`: (string) (required) ID of the SSH identity

**Response body:**

{object}
- `data`: {object}

## API reference

DELETE /v1/integrations/ssh-identities/{identityId}

DELETE /v1/teams/{teamId}/integrations/ssh-identities/{identityId}

### Example Response

200 OK: The operation was performed successfully.

```json
{
  "data": {}
}
```

## CLI reference

$ northflank delete ssh-identities

Options:

- `--identityId <identityId>`: ID of the SSH identity

- `--verbose `: Verbose output

- `--quiet `: No console output

- `--force `: Don't ask for confirmation

- `-o --output <format>`: Output formatting 

### Example Response

 The operation was performed successfully.

```json
{}
```

## JavaScript client reference

### Example request



```javascript
await apiClient.delete.sshIdentities({
  parameters: {
    "identityId": "example-ssh-identity"
  }
});
```

### Example Response

 The operation was performed successfully.

```json
{
  "data": {},
  "rawResponse": "...",
  "request": "...",
  "error": "..."
}
```

Previous: [Update SSH identity](/docs/v1/api/team/integrations/update-ssh-identity)

Next: [List VCS providers](/docs/v1/api/team/integrations/list-vcs-providers)