aboutsummaryrefslogtreecommitdiff
path: root/lib/zendex/ticket.ex
blob: 5e2b66e628bcc80d2198b6938f68e67b4047c98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
defmodule Zendex.Ticket do
  @moduledoc """
  Allows interaction with the Zendesk Ticket API, to so things such as creating
  and listing tickets.
  """

  @url "/api/v2/tickets.json"

  @http_client Application.get_env(:zendex, :http_client)

  @spec list(Zendex.Connection.t) :: HTTPoison.Response.t
  def list(connection) do
    @http_client.get!(connection.base_url <> @url, [{"Authorization",
       "Basic #{connection.authentication}"}])
  end

  @spec create(Zendex.Connection.t, map) :: HTTPoison.Response.t
  def create(connection, ticket) do
    @http_client.post!(connection.base_url <> @url,
      Poison.encode!(ticket),
      [{"Authorization", "Basic #{connection.authentication}"},
       {"Content-Type", "application/json"}])
  end

end