Start typing to search...
No results for ""
The KiviCare Google Meet Addon provides a set of REST API endpoints that manage authentication, configuration, and Google Meet consultation workflows. These endpoints enable secure communication between WordPress, KiviCare, and Google services.
All endpoints are relative to the following base path:
YOUR_SITE_URL/wp-json/kivi-care/v1/
These endpoints are accessible only to Administrators and are used to manage global Google Meet configuration.
settings/googlemeetGETsettings/googlemeetPOST / PUT{
"google_meet_config": {
"client_id": "...",
"client_secret": "..."
},
"google_meet_event_template": { }
}
These endpoints allow doctors to manage their individual Google Meet connections.
settings/googlemeet/doctor-configGETsettings/googlemeet/doctor-configPUT{
"auth_type": "oauth",
"client_id": "...",
"client_secret": "..."
}
settings/googlemeet/authorizeGET{
"redirect_url": "https://accounts.google.com/..."
}
settings/googlemeet/disconnectGETsettings/googlemeet/test-connectionPUTsettings/googlemeet/callbackGETcode and state from Google, exchanges them for access and refresh tokens, and redirects the user back to the KiviCare dashboard.Start typing to search...
No results for ""