You can pass the URL parameters to menu items in three ways.
A hard-coded url:
"url": '/some-path/to-feature'
An url that can be reversed with the reverse method:
"url": 'named_url'
e.g. If you have an url with kwargs like this:
url(r'^update/(?P<pk>\d+)/$', SomeView.as_view(), name='update'),
you can pass the url as follows:
"url": {"viewname": 'update', "kwargs": {"pk": 1}}
In fact, you can pass any of the parameters of the reverse method through the dictionary
For Django 1.10 the reverse method sign is: reverse(viewname, urlconf=None, args=None, kwargs=None, current_app=None)