HTTP Example:GET /rest/order/{key}/statuses
| API Example: RESTOrders.getOrderStatuses({'key': …}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:POST /rest/order/{key}/statuses
| API Example: RESTOrders.postOrderStatuses({'key': …, '$entity': …}); |
- Input:
- RESTOrdersBean.OrderStatus
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:PUT /rest/order/{key}/statuses
| API Example: RESTOrders.putOrderStatuses({}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:DELETE /rest/order/{key}/statuses
| API Example: RESTOrders.deleteOrderStatuses({}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|
HTTP Example:HEAD /rest/order/{key}/statuses
| API Example: RESTOrders.headOrderStatuses({}); |
- Output:
- javax.ws.rs.core.Response
- Produces:
- application/xml
- text/plain
|