Path: / rest / order / {key} / lines

Path parameters:
key -

Method Summary
ResourceDescription
GET /rest/order/{key}/lines 
POST /rest/order/{key}/lines 
PUT /rest/order/{key}/lines 
DELETE /rest/order/{key}/lines 
HEAD /rest/order/{key}/lines 

Method Detail
HTTP Example:
GET /rest/order/{key}/lines

API Example:

RESTOrders.getOrderLines({'key': …});

Output:
javax.ws.rs.core.Response
Produces:
application/xml
text/plain
HTTP Example:
POST /rest/order/{key}/lines

API Example:

RESTOrders.postOrderLines({'key': …,
  '$entity': …});

Input:
RESTOrdersBean.OrderLine
Output:
javax.ws.rs.core.Response
Produces:
application/xml
text/plain
HTTP Example:
PUT /rest/order/{key}/lines

API Example:

RESTOrders.putOrderLines({});

Output:
javax.ws.rs.core.Response
Produces:
application/xml
text/plain
HTTP Example:
DELETE /rest/order/{key}/lines

API Example:

RESTOrders.deleteOrderLines({});

Output:
javax.ws.rs.core.Response
Produces:
application/xml
text/plain
HTTP Example:
HEAD /rest/order/{key}/lines

API Example:

RESTOrders.headOrderLines({});

Output:
javax.ws.rs.core.Response
Produces:
application/xml
text/plain