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
|