HTTP Example:GET /rest/order/{key}/consignments
| API Example: RESTOrders.getOrderConsignments({'key': …}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:POST /rest/order/{key}/consignments
| API Example: RESTOrders.postOrderConsignments({'key': …, '$entity': …}); |
- Input:
- RESTOrdersBean.ResourceLink
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:PUT /rest/order/{key}/consignments
| API Example: RESTOrders.putOrderConsignments({}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:DELETE /rest/order/{key}/consignments
| API Example: RESTOrders.deleteOrderConsignments({}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:HEAD /rest/order/{key}/consignments
| API Example: RESTOrders.headOrderConsignments({}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|