---
title: "es_unmute_path(_:_:_:)"
framework: endpointsecurity
role: symbol
role_heading: Function
path: "endpointsecurity/es_unmute_path(_:_:_:)"
---

# es_unmute_path(_:_:_:)

Restores event delivery from a previously-muted path.

## Declaration

```swift
func es_unmute_path(_ client: OpaquePointer, _ path: UnsafePointer<CChar>, _ type: es_mute_path_type_t) -> es_return_t
```

## Parameters

- `client`: A previously-muted client. If the call succeeds, this client begins to receive events from executables whose paths match path.
- `path`: The path to unmute. The client resumes receiving events from executables whose paths match this string.
- `type`: The type of the path argument, either a prefix or a literal path.

## Return Value

Return Value A value that indicates whether the unmute request succeeded or failed with an error.

## Discussion

Discussion To unmute a subset of events from a path, use es_unmute_path_events(_:_:_:_:_:).

## See Also

### Unmuting Events

- [es_unmute_process(_:_:)](endpointsecurity/es_unmute_process(_:_:).md)
- [es_unmute_process_events(_:_:_:_:)](endpointsecurity/es_unmute_process_events(_:_:_:_:).md)
- [es_unmute_path_events(_:_:_:_:_:)](endpointsecurity/es_unmute_path_events(_:_:_:_:_:).md)
- [es_mute_path_type_t](endpointsecurity/es_mute_path_type_t.md)
- [es_unmute_all_paths(_:)](endpointsecurity/es_unmute_all_paths(_:).md)
