Merge Dictionaries with values of type Vector

You need to start with a Dict that has the right type, so you could do:

julia> blank = Dict{Symbol, Any}()
Dict{Symbol, Any}()

julia> merge!(blank, body, statusParameter)
Dict{Symbol, Any} with 2 entries:
  :status => ["pending"]
  :scope  => "deposited"