Example: an Order object (aggregate root) has a collection of OrderLine objects (child entities). What's the URL add an OrderLine to an Order? Take into consideration the difference between using the aggregate roots' controller and having a separate controller for the child entity.
1: http://example.com/orders/add-orderline?order-id=42&product-id=12&quantity=2
or
2: http://example.com/order-lines/add?order-id=42&product-id=12&quantity=2
Thanks!