Merge two tickets

rt_ticket_merge(origin, into)

Arguments

origin

(character|numeric) Ticket ID to merge into into

into

(character|numeric) Ticket ID to merge origin into

Value

(numeric) The ID of ticket both tickets were merged into

Examples

if (FALSE) { # First, create two tickets ticket_one <- rt_ticket_create("General") ticket_two <- rt_ticket_create("General") # Then merge them together ticket_merge(ticket_one, ticket_two) }