Google Link Start
GET
/me/identities/google/start
const url = 'https://example.com/me/identities/google/start';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/me/identities/google/start \ --header 'Authorization: Bearer <token>'Needs the bearer token, so it answers JSON and the SPA navigates itself.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Google Link Start Me Identities Google Start Get
object
key
additional properties
string
Examplegenerated
{ "additionalProperty": "example"}