# `Twilio.Insights.V1.Conference.ParticipantService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/insights/v1/conference/participant_service.ex#L2)

Service for Participant API operations.

Operations: `list`, `fetch`

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Insights.V1.Conference.Participant.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Get a specific Conference Participant Summary for a Conference.

Operation: `FetchConferenceParticipant` | Tags: InsightsV1ConferenceParticipant

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `Events` | string | Conference events generated by application or participant activity; e.g. `hold`, `mute`, etc. |
| `Metrics` | string | Object. Contains participant call quality metrics. |

# `list`

```elixir
@spec list(Twilio.Client.t(), String.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Get a list of Conference Participants Summaries for a Conference.

Operation: `ListConferenceParticipant` | Tags: InsightsV1ConferenceParticipant

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `ParticipantSid` | string | The unique SID identifier of the Participant. |
| `Label` | string | User-specified label for a participant. |
| `Events` | string | Conference events generated by application or participant activity; e.g. `hold`, `mute`, etc. |

# `stream`

```elixir
@spec stream(Twilio.Client.t(), String.t(), map(), keyword()) :: Enumerable.t()
```

Stream: Get a list of Conference Participants Summaries for a Conference. (lazy auto-pagination).

---

*Consult [api-reference.md](api-reference.md) for complete listing*
