Hexoku.API.Account

An account represents an individual signed up to use the Heroku platform.

Attributes

id
unique identifier of item generated by Heroku
name
full name of the account owner
allow_tracking
whether to allow third party web activity tracking. default: true
beta
whether allowed to utilize beta Heroku features
email
unique email address of account
verified
whether account has been verified with billing information
two_factor_authentication
whether two-factor auth is enabled on the account
last_login
when account last authorized with Heroku
created_at
when account was created
updated_at
when account was updated

For more info read the Heroku API Reference

Source

Summary

info(client)

Info for account

update(client, body)

Update account

Functions

info(client)

Specs:

  • info(Hexoku.Client.t) :: Map.t

Info for account.

Examples

client |> Hexoku.API.info()
Source
update(client, body)

Specs:

Update account.

Examples

client |> Hexoku.API.update(%{name: "Nonni DeMaze"})
Source