How do I trigger mastodon.post from node red?

Hello,
I can trigger mastodon.post successful from developer-tools->actions. But if I try to do it from node red I fail to configure the node correcty.
How does e.g.

action: mastodon.post
data:
media_warning: false
config_entry_id:
status: helloMom
visibility: private

translate to a node config?
do I need to set this as Output properties?
like:
msg.config_entry_is =
or as json/jsonData in the data text field?
Thanks in advance
Ben

Or rather like this?

Both examples obviously do not work for me.
Error:
“HomeAssistantError: required key not provided @ data[‘config_entry_id’]”

A quick way to convert an automation from YAML to JSON is to use an online YAML-to-JSON converter. You can then paste the converted output directly into the data field in Node-RED.

Okay, didnt know such think exists.
I got it working with:

{
    "config_entry_id": "3434343434344",
    "status": "hamster is digging",
    "visibility": "private"
}

In the Data “as json” and no output properties at all