Module: Infusionsoft::Client::Ticket

Included in:
Infusionsoft::Client
Defined in:
lib/infusionsoft/client/ticket.rb

Instance Method Summary collapse

Instance Method Details

#ticket_add_move_notes(ticket_list, move_notes, move_to_stage_id, notify_ids) ⇒ Object

add move notes to existing tickets



5
6
7
8
9
# File 'lib/infusionsoft/client/ticket.rb', line 5

def ticket_add_move_notes(ticket_list, move_notes,
                          move_to_stage_id, notify_ids)
  response = xmlrpc('ServiceCallService.addMoveNotes', ticket_list,
                 move_notes, move_to_stage_id, notify_ids)
end

#ticket_move_stage(ticket_id, ticket_stage, move_notes, notify_ids) ⇒ Object

add move notes to existing tickets



12
13
14
15
# File 'lib/infusionsoft/client/ticket.rb', line 12

def ticket_move_stage(ticket_id, ticket_stage, move_notes, notify_ids)
  response = xmlrpc('ServiceCallService.moveTicketStage',
                 ticket_id, ticket_stage, move_notes, notify_ids)
end