Hexoku.API.Organizations

Organizations allow you to manage access to a shared group of applications across your development team.

Attributes

id
unique identifier of item generated by Heroku
name
unique name of item provided by the user
credit_card_collections
whether charges incurred by the org are paid by credit card.
default
whether to use this organization when none is specified
provisioned_licenses
whether the org is provisioned licenses by salesforce.
role
your role in the organization ["admin", "member", "collaborator"]
created_at
when item was created
updated_at
when item was last modified

For more info read the Heroku API Reference

Source

Summary

list(client)

List organizations in which you are a member

update(client, org, body)

Info for an organization

Functions

list(client)

Specs:

  • list(Hexoku.Client.t) :: [Map.t]

List organizations in which you are a member.

Examples

client |> Hexoku.API.Organizations.list()
Source
update(client, org, body)

Specs:

Info for an organization.

Examples

client |> Hexoku.API.Organizations.info("cedar")
Source