TexAu icon

TexAu

Perform Opration on TexAu Cloud

Overview

This node integrates with the TexAu Cloud platform to manage social accounts programmatically. Specifically, the "Force Delete" operation under the "Social Account" resource allows users to permanently delete a social account by its unique identifier. This is useful in scenarios where an account needs to be removed irreversibly from the system, such as cleaning up unused or compromised accounts.

Practical examples include:

  • Automating cleanup of social accounts that are no longer active.
  • Enforcing compliance by removing accounts that violate policies.
  • Managing social accounts at scale without manual intervention.

Properties

Name Meaning
Account ID The unique identifier of the social account to be force deleted. This is a required string input.

Output

The node outputs JSON data representing the response from the TexAu API after attempting to force delete the specified social account. Typically, this will confirm whether the deletion was successful or provide error details if it failed.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating with the TexAu Cloud API.
  • The base URL for API requests is https://v2-prod-api.texau.com.
  • The node depends on the TexAu API endpoint /api/v1/public/social-accounts/{accountId}/force accessed via HTTP DELETE method.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Account ID will likely result in an error response indicating the account could not be found.
    • Missing or incorrect API authentication credentials will cause authorization failures.
    • Network connectivity problems can prevent the request from reaching the TexAu API.
  • Error messages and resolutions:

    • "Unauthorized" or similar: Check that the API key credential is correctly configured and has necessary permissions.
    • "Account not found": Verify the Account ID is correct and exists in the TexAu system.
    • "Request failed": Inspect network settings and ensure the TexAu API service is reachable.

Links and References

Discussion