Verify Google One Tap credential

POST /api/experience/verification/google-one-tap/verify

Verify a Google One Tap credential (ID token) and create a verification record.

application/json

Body Required

  • credential string Required

    The Google One Tap credential (ID token)

Responses

  • 200 application/json

    The Google One Tap credential was successfully verified.

    Hide response attribute Show response attribute object
    • verificationId string Required

      The verification record ID

  • 400

    Bad request. The credential is invalid or malformed.

  • 404

    Google connector not found or not configured.

POST /api/experience/verification/google-one-tap/verify
curl \
 --request POST 'https://[tenant_id].logto.app/api/experience/verification/google-one-tap/verify' \
 --header "Content-Type: application/json" \
 --data '{"credential":"string"}'
Request examples
{
  "credential": "string"
}
Response examples (200)
{
  "verificationId": "string"
}