Mastodon icon

Mastodon

Interact with Mastodon API

Overview

This node interacts with the Mastodon API to add a note to a specified Mastodon account. It is useful for users who want to programmatically annotate or add comments to accounts on a Mastodon instance, for example, to keep track of important information or reminders related to specific accounts.

Use Case Examples

  1. Adding a note to a Mastodon account to document a collaboration history.
  2. Automatically tagging accounts with notes during social media monitoring workflows.

Properties

Name Meaning
Mastodon URL The URL of the Mastodon instance to connect to.
Account ID The unique identifier of the Mastodon account to which the note will be added.
Note The text content of the note to add to the specified account.

Output

JSON

  • json - The response from the Mastodon API after adding the note, typically including details of the note or confirmation of the action.

Dependencies

  • Requires an OAuth2 API credential for Mastodon authentication to authorize API requests.

Troubleshooting

  • Ensure the Mastodon URL is correct and accessible; incorrect URLs will cause connection failures.
  • Verify that the Account ID is valid and exists on the specified Mastodon instance; invalid IDs will result in errors.
  • Check that the OAuth2 credentials are properly configured and have the necessary permissions to add notes to accounts.
  • Common error messages include 'The operation is not implemented' if the operation or resource is incorrectly specified, and API errors related to authentication or invalid input data.

Discussion