Overview
This node integrates with the GetTranscribe API, enabling users to interact with transcription services for videos from social media platforms, manage folders, and retrieve user information. Specifically, the User - Get operation fetches detailed information about a user by their user ID.
Common scenarios where this node is beneficial include:
- Retrieving user profile details from the GetTranscribe service for auditing or reporting.
- Integrating user data into workflows that require user-specific information.
- Automating user management tasks by fetching user details dynamically.
Example:
You want to get information about your own user account in GetTranscribe to verify your subscription status or usage limits. By providing your user ID, this node will return your user details in JSON format.
Properties
| Name | Meaning |
|---|---|
| User ID | The ID of the user to retrieve. This should be your own user ID in the GetTranscribe system. |
Output
The node outputs a JSON object containing the user information retrieved from the GetTranscribe API. The structure typically includes fields such as user ID, name, email, subscription details, and other metadata related to the user account.
The output is accessible in the json property of the node's output data. This allows subsequent nodes in the workflow to use or manipulate the user information.
No binary data is output by this operation.
Dependencies
- Requires an active API key credential for the GetTranscribe API configured in n8n.
- The node makes HTTP requests to
https://api.gettranscribe.ai. - Proper network access to the GetTranscribe API endpoint is necessary.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Providing a non-existent or incorrect User ID will result in errors or empty responses.
- Network connectivity problems can prevent successful API calls.
Error messages and resolutions:
"Unauthorized"or similar authentication errors: Verify that the API key credential is correctly set up and has proper permissions."User not found"or 404 errors: Confirm the User ID is correct and exists in the GetTranscribe system.- Timeout or network errors: Check your internet connection and firewall settings to ensure access to the API endpoint.
Links and References
- GetTranscribe API Documentation (hypothetical link, replace with actual if available)
- n8n Documentation on HTTP Request Node (for understanding underlying request mechanics)