do_action( ‘rest_insert_attachment’, WP_Post $attachment, WP_REST_Request $request, bool $creating )

In this article

Fires after a single attachment is created or updated via the REST API.

Parameters

$attachmentWP_Post
Inserted or updated attachment object.
$requestWP_REST_Request
The request sent to the API.
$creatingbool
True when creating an attachment, false when updating.

Source

do_action( 'rest_insert_attachment', $attachment, $request, true );

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

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