Skip to content

mastodon_api_conversation_delete

github-actions[bot] edited this page Apr 8, 2026 · 12 revisions

Modify the account conversations delete.

Auto-generated Example

add_action(
    'mastodon_api_conversation_delete',
    function (
        array $conversations,
        int $user_id,
        WP_REST_Request $request
    ) {
        // Your code here
    },
    10,
    3
);

Parameters

  • array $conversations The account conversations.
  • int $user_id The user ID.
  • WP_REST_Request $request The request object.

Files

do_action( 'mastodon_api_conversation_delete', $id, $request )

Hooks

Clone this wiki locally