Filters the REST API response.
$resultWP_HTTP_Response$serverWP_REST_Server$requestWP_REST_Requestwp-includes/rest-api.php:3033rest_preload_api_request()wp-includes/rest-api/class-wp-rest-server.php:464WP_REST_Server::serve_request()wp-includes/rest-api/class-wp-rest-server.php:824WP_REST_Server::embed_links()wp-includes/rest-api/class-wp-rest-server.php:1894WP_REST_Server::serve_batch_request_v1() * @since 4.5.0 Applied to embedded responses. * * @param WP_HTTP_Response $result Result to send to the client. Usually a `WP_REST_Response`. * @param WP_REST_Server $server Server instance. * @param WP_REST_Request $request Request used to generate the response. */ $result = apply_filters( 'rest_post_dispatch', rest_ensure_response( $result ), $this, $request ); // Wrap the response in an envelope if asked for. if ( isset( $_GET['_envelope'] ) ) { $embed = isset( $_GET['_embed'] ) ? rest_parse_embed_param( $_GET['_embed'] ) : false; $result = $this->envelope_response( $result, $embed ); }Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.