Actions48
- Account Actions
- Authentication Actions
- Blocks Actions
- Bookmarks Actions
- Favourites Actions
- Featured Tags Actions
- Follow Requests Actions
- Media Actions
- Mutes Actions
- Notifications Actions
- Status Actions
- Timeline Actions
- Polls Actions
Overview
This node interacts with the Mastodon API to perform various operations related to Mastodon resources. Specifically, for the 'Bookmarks' resource with the 'Add Bookmark' operation, it allows users to add a bookmark to a specified status on a Mastodon instance. This is useful for automating the process of bookmarking posts on Mastodon, such as saving important or interesting statuses for later reference.
Use Case Examples
- Automatically bookmark a status by its ID on a specified Mastodon instance URL.
- Use in workflows to manage bookmarks programmatically based on certain triggers or conditions.
Properties
| Name | Meaning |
|---|---|
| Mastodon URL | The URL of the Mastodon instance to connect to, required to direct the API requests to the correct server. |
| Status ID | The ID of the status to add as a bookmark, required to specify which post to bookmark. |
Output
JSON
json- The JSON response from the Mastodon API after adding the bookmark, typically containing details of the bookmarked status or confirmation of the action.
Dependencies
- Requires an OAuth2 API credential for Mastodon to authenticate API requests.
Troubleshooting
- Common issues include invalid or missing Mastodon URL, incorrect or missing status ID, and authentication failures due to invalid or expired OAuth2 credentials.
- Error messages may indicate unimplemented operations if the resource or operation names are incorrect, or API errors returned from the Mastodon server such as rate limits or permission issues.
Links
- Mastodon API Bookmarks Documentation - Official Mastodon API documentation for bookmarks, detailing endpoints and usage.