Automattic\WooCommerce\StoreApi\Routes\V1
Order::get_route_response
Handle the request and return a valid response for this endpoint.
Method of the class: Order{}
No Hooks.
Returns
\WP_REST_Response
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_route_response( $request );
- $request(WP_REST_Request) (required)
- Request object.
Order::get_route_response() Order::get route response code WC 9.9.3
protected function get_route_response( \WP_REST_Request $request ) { $order_id = absint( $request['id'] ); return rest_ensure_response( $this->schema->get_item_response( wc_get_order( $order_id ) ) ); }