ex_heroku_client v0.4.0 Heroku.Account

Summary

Functions

Calls DELETE /account

Calls DELETE /users/#{account_identity}

Calls GET /account

Calls GET /users/#{account_identity}

Calls PATCH /account

Calls PATCH /users/#{account_identity}

Functions

delete()

Calls DELETE /account

delete_by_user(account_identity)

Calls DELETE /users/#{account_identity}

info()

Calls GET /account

info_by_user(account_identity)

Calls GET /users/#{account_identity}

update_1(params \\ %{})

Calls PATCH /account

params is JSON encoded and passed as the request body.

params Schema

{
  "properties": {
    "allow_tracking": {
      "default": true,
      "description": "whether to allow third party web activity tracking",
      "example": true,
      "readOnly": false,
      "type": [
        "boolean"
      ]
    },
    "beta": {
      "default": false,
      "description": "whether allowed to utilize beta Heroku features",
      "example": false,
      "readOnly": false,
      "type": [
        "boolean"
      ]
    },
    "name": {
      "description": "full name of the account owner",
      "example": "Tina Edmonds",
      "readOnly": false,
      "type": [
        "string",
        "null"
      ]
    }
  },
  "type": [
    "object"
  ]
}
update_by_user(account_identity, params \\ %{})

Calls PATCH /users/#{account_identity}

params is JSON encoded and passed as the request body.

params Schema

{
  "properties": {
    "allow_tracking": {
      "default": true,
      "description": "whether to allow third party web activity tracking",
      "example": true,
      "readOnly": false,
      "type": [
        "boolean"
      ]
    },
    "beta": {
      "default": false,
      "description": "whether allowed to utilize beta Heroku features",
      "example": false,
      "readOnly": false,
      "type": [
        "boolean"
      ]
    },
    "name": {
      "description": "full name of the account owner",
      "example": "Tina Edmonds",
      "readOnly": false,
      "type": [
        "string",
        "null"
      ]
    }
  },
  "type": [
    "object"
  ]
}