Was this helpful?
Retrieve details of tenant Google integrations settings.
/google
curl -L \ --url 'https://HOSTNAME:8887/api/google' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "client_id": "text", "client_secret": "text", "redirect_uri": "text", "sbc_redirect_uri": "text", "auth_consent_uri": "text" }
Update tenant Google integration settings.
The client ID of Google Cloud project.
The client secret of Google Cloud project.
curl -L \ --request POST \ --url 'https://HOSTNAME:8887/api/google' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{ "client_id": "text", "client_secret": "text" }'
No body