Method: Trello::Client#post

Defined in:
lib/trello/client.rb

#post(path, body = {}) ⇒ Object



22
23
24
25
# File 'lib/trello/client.rb', line 22

def post(path, body = {})
  uri = Addressable::URI.parse("https://api.trello.com/#{API_VERSION}#{path}")
  invoke_verb(:post, uri, body)
end