Current section

Files

Jump to
ex_closeio lib ex_closeio resources lead_status.ex
Raw

lib/ex_closeio/resources/lead_status.ex

defmodule ExCloseio.LeadStatus do
import ExCloseio.Base
@url_part "/status/lead/"
def all(params, api_key \\ :global) do
get(@url_part, api_key, params)
end
def create(params, api_key \\ :global) do
post(@url_part, params, api_key)
end
def update(id, params, api_key \\ :global) do
put(@url_part <> id, params, api_key)
end
def destroy(id, api_key \\ :global) do
delete(@url_part <> id, api_key)
end
end