3CX icon

3CX

Interact with 3CX telephony system

Actions462

Overview

The "Update Google Settings" operation allows users to modify configuration settings related to Google integration within a system. This node is useful for scenarios where administrators or automation workflows need to programmatically update Google-related credentials, project identifiers, security options like reCAPTCHA, and user synchronization settings. For example, it can be used to update OAuth client IDs and secrets, enable or disable extension sign-in features, configure provisioning URLs, or adjust which users are synchronized with Google services.

Properties

Name Meaning
Client Id The OAuth 2.0 Client ID used for Google API authentication.
Client Secret The OAuth 2.0 Client Secret in JSON format, parsed before sending.
Id Identifier for the specific Google settings record to update.
Is Extension Sign In Enabled Boolean flag to enable or disable extension sign-in functionality.
Project Id The Google Cloud project identifier associated with these settings.
Provision Url URL used for provisioning related Google services or configurations.
Re Captcha Enabled Boolean flag to enable or disable Google's reCAPTCHA service for security.
User Sync JSON object specifying user synchronization details, including selected users to sync.

Output

The node outputs JSON data representing the result of the update operation. This typically includes confirmation of the updated settings or any response returned by the underlying API. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential or OAuth 2.0 token with permissions to update Google settings.
  • The node sends HTTP requests with a JSON body containing the updated properties.
  • No additional external dependencies are indicated in the provided source code snippet.

Troubleshooting

  • Common Issues:
    • Invalid or missing Client Id or Client Secret may cause authentication failures.
    • Incorrect JSON formatting in the Client Secret or User Sync fields can lead to parsing errors.
    • Providing an invalid Id for the settings record may result in not found or update failure errors.
  • Error Messages:
    • Authentication errors typically indicate issues with the provided credentials; verify their correctness.
    • JSON parse errors suggest malformed JSON input; ensure proper JSON syntax in relevant fields.
    • API response errors may include permission denied or invalid parameter messages; check API access rights and property values.

Links and References

Discussion