# `Twilio.Api.V2010.SIP.Domain.Auth.Call.AuthCallsIpAccessControlListMappingService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/api/v2010/sip/domain/auth/call/auth_calls_ip_access_control_list_mapping_service.ex#L2)

IP address lists for SIP calls

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

# `create`

```elixir
@spec create(Twilio.Client.t(), String.t(), map(), keyword()) ::
  {:ok,
   Twilio.Resources.Api.V2010.SIP.Domain.Auth.Call.AuthCallsIpAccessControlListMapping.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Create a new IP Access Control List mapping

Operation: `CreateSipAuthCallsIpAccessControlListMapping` | Tags: Api20100401AuthCallsIpAccessControlListMapping

## Required Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `IpAccessControlListSid` | string | The SID of the IpAccessControlList resource to map to the SIP domain. |

# `delete`

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

Delete an IP Access Control List mapping from the requested domain

Operation: `DeleteSipAuthCallsIpAccessControlListMapping` | Tags: Api20100401AuthCallsIpAccessControlListMapping

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), String.t(), keyword()) ::
  {:ok,
   Twilio.Resources.Api.V2010.SIP.Domain.Auth.Call.AuthCallsIpAccessControlListMapping.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch a specific instance of an IP Access Control List mapping

Operation: `FetchSipAuthCallsIpAccessControlListMapping` | Tags: Api20100401AuthCallsIpAccessControlListMapping

# `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 IP Access Control List mappings belonging to the domain used in the request

Operation: `ListSipAuthCallsIpAccessControlListMapping` | Tags: Api20100401AuthCallsIpAccessControlListMapping

# `stream`

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

Stream: Retrieve a list of IP Access Control List mappings belonging to the domain used in the request (lazy auto-pagination).

---

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