Mxpanel.People.delete

You're seeing just the function delete, go back to Mxpanel.People module for more information.
Link to this function

delete(client, distinct_id, opts \\ [])

View Source

Specs

delete(Mxpanel.Client.t(), String.t(), Keyword.t()) :: :ok | {:error, term()}

Permanently delete the profile from Mixpanel, along with all of its properties.

Mxpanel.People.delete(client, "13793")

If you have duplicate profiles, set ignore_alias to true so that you don't delete the original profile when trying to delete the duplicate.

Mxpanel.People.delete(client, "user@mail.com", ignore_alias: true)