# `Stripe.Services.FileLinkService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/file_link_service.ex#L2)

FileLink

To share the contents of a `File` object with non-Stripe users, you can
create a `FileLink`. `FileLink`s contain a URL that you can use to
retrieve the contents of the file without authentication.

# `create`

```elixir
@spec create(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Create a file link

Creates a new file link object.

# `list`

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

List all file links

Returns a list of file links.

# `retrieve`

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

Retrieve a file link

Retrieves the file link with the given ID.

# `update`

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

Update a file link

Updates an existing file link object. Expired links can no longer be updated.

---

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