# `Stripe.Services.V2.Core.Accounts.PersonService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/v2/core/accounts/person_service.ex#L2)

Person API operations.

# `create`

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

Create a person

Create a Person. Adds an individual to an Account's identity. You can set relationship attributes and identity information at creation.

# `delete`

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

Delete a person

Delete a Person associated with an Account.

# `list`

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

List persons

Returns a paginated list of Persons associated with an Account.

# `retrieve`

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

Retrieve a person

Retrieves a Person associated with an Account.

# `update`

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

Update a person

Updates a Person associated with an Account.

---

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