Initiate login with Google

Start the login process using Google. You will be redirected to Google's login page for authentication. After successful authentication, you will be redirected back. The endpoint returns a `redirectUrl` to start this process and a unique `requestId` for subsequent calls.

Query Parameters

callbackUrl string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/google/login
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/google/login?callbackUrl=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "redirectUrl": "string"
  }
}