apply_filters( ‘rest_envelope_response’, array $envelope, WP_REST_Response $response )

In this article

Filters the enveloped form of a REST API response.

Parameters

$envelopearray
Envelope data.
  • body array
    Response data.
  • status int
    The 3-digit HTTP status code.
  • headers array
    Map of header name to header value.
$responseWP_REST_Response
Original response data.

Source

$envelope = apply_filters( 'rest_envelope_response', $envelope, $response );

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.