mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node interacts with the mittwald mStudio API to list API tokens associated with a user. It is useful for scenarios where you need to retrieve and manage API tokens programmatically, such as auditing token usage, automating token rotation, or integrating token data into other workflows.

For example, you might use this node to fetch all API tokens for a user to display them in a dashboard or to check which tokens are active before revoking unused ones.

Properties

Name Meaning
Limit The maximum number of API tokens to return in the response.
Skip The number of items to skip in the list; should be a multiple of Limit (used for paging).
Page The page number to display; functions similarly to Skip. If both Page and Skip are set, Skip takes precedence.

Output

The node outputs JSON data representing a list of API tokens for the specified user. Each item in the output typically contains details about an individual API token, such as its identifier, creation date, expiration, and permissions (though exact fields depend on the mittwald API response).

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authenticating with the mittwald mStudio API.
  • The base URL for API requests is https://api.mittwald.de.
  • The node uses standard HTTP headers for JSON content (Accept: application/json, Content-Type: application/json).

Troubleshooting

  • Empty results: Ensure that the Limit, Skip, and Page parameters are set correctly and that the user has API tokens available.
  • Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
  • Pagination issues: Remember that if both Skip and Page are provided, Skip will override Page. Use multiples of Limit for Skip to avoid unexpected results.
  • API rate limits or connectivity problems: Check network connectivity and API usage limits imposed by mittwald.

Links and References

Discussion