# `Twilio.Conversations.V1.Service.BindingService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/conversations/v1/service/binding_service.ex#L2)

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
A Binding resource represents a push notification binding and its configuration, for delivering conversation events to mobile or web endpoints.

Operations: `list`, `fetch`, `delete`

# `delete`

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

Remove a push notification binding from the conversation service

Operation: `DeleteServiceBinding` | Tags: ConversationsV1Binding

# `fetch`

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

Fetch a push notification binding from the conversation service

Operation: `FetchServiceBinding` | Tags: ConversationsV1Binding

# `list`

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

Retrieve a list of all push notification bindings in the conversation service

Operation: `ListServiceBinding` | Tags: ConversationsV1Binding

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `BindingType` | array | The push technology used by the Binding resources to read.  Can be: `apn`, `gcm`, `fcm`, or `twilsock`.  See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `Identity` | array | The identity of a [Conversation User](https://www.twilio.com/docs/conversations/api/user-resource) this binding belongs to. See [access tokens](https://www.twilio.com/docs/conversations/create-tokens) for more details. |

# `stream`

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

Stream: Retrieve a list of all push notification bindings in the conversation service (lazy auto-pagination).

---

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