module Fellowshipone::Client::Communication
Public Instance Methods
create_communication(person_id, json_body)
click to toggle source
# File lib/fellowshipone/resources/communication.rb, line 9 def create_communication(person_id, json_body) post("/v1/People/#{person_id}/Communications.json", json_body) end
new_communication(person_id)
click to toggle source
# File lib/fellowshipone/resources/communication.rb, line 5 def new_communication(person_id) get("/v1/People/#{person_id}/Communications/new.json") end