Actions36
- Automation Actions
- Execution Actions
- Notification Actions
- Platform Actions
- Prompt Actions
- Proxy Actions
- Result Actions
- Run Automation Actions
- Social Account Actions
- Workflow Actions
- Workspace Actions
Overview
This node interacts with the TexAu Cloud platform, specifically allowing users to manage social accounts linked to their TexAu environment. The "Reset Limit" operation for the "Social Account" resource enables users to reset the usage limit or quota associated with a particular social account by its identifier. This can be useful in scenarios where limits are imposed on social account actions (e.g., API call quotas, automation runs) and the user needs to clear or refresh these limits to continue operations without waiting for automatic resets.
Practical examples:
- Resetting the daily action limit on a social media account integrated into TexAu to resume automated tasks.
- Clearing rate limits after testing or troubleshooting social account automations.
Properties
Name | Meaning |
---|---|
Account ID | The unique identifier of the social account whose limit you want to reset. |
Operation ID | A string representing the specific operation ID related to the reset request (sent in the request body). |
Output
The node outputs JSON data reflecting the response from the TexAu API after attempting to reset the limit on the specified social account. The exact structure depends on the API response but typically includes confirmation of the reset action or error details if the operation failed.
No binary data output is indicated for this operation.
Dependencies
- Requires an active connection to the TexAu Cloud API.
- Needs an API authentication token credential configured in n8n to authorize requests.
- The base URL for API requests is
https://v2-prod-api.texau.com
. - The node uses HTTP DELETE method to reset the limit at endpoint
/api/v1/public/social-accounts/{AccountID}/limit
.
Troubleshooting
Common issues:
- Invalid or missing Account ID: Ensure the Account ID is correct and corresponds to an existing social account.
- Missing or invalid Operation ID: The operationId must be provided in the request body; otherwise, the API may reject the request.
- Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Network or connectivity problems: Confirm that the TexAu API endpoint is reachable from your environment.
Error messages:
- Unauthorized or 401 errors: Check API credentials and permissions.
- 404 Not Found: The specified social account ID does not exist.
- 400 Bad Request: Likely due to missing or malformed parameters such as operationId.
Resolving these usually involves verifying input parameters, ensuring valid credentials, and checking network access.
Links and References
- TexAu Official Website
- TexAu API Documentation (for detailed API endpoints and request/response formats)