View Source SignalWire (signal_wire v0.1.0)

A relatively full featured API client for SignalWire.

Summary

Functions

Handles building the Tesla client which gets passed into each individual resource before making an HTTP request

Types

@type error() :: {:error, any()}
@type success() :: {:ok, map()}
@type success_delete() :: :ok
@type success_list() :: {:ok, [map()], map()}

Functions

Handles building the Tesla client which gets passed into each individual resource before making an HTTP request

By default it will read from your local configuration, but you can create a per request client by providing a specific project_id and token if you are managing multiple different subprojects within your application.

Link to this function

client(project_id, token, adapter \\ nil)

View Source