🤖 For AI agents: The complete documentation index is available at /docs/llms.txt. A markdown version of this page is available at /docs/apis/identity-providers/google.md.
Available since 1.1.0

The Google identity provider type will use the Google OAuth v2.0 login API. It will also provide a Login with Google button on FusionAuth's login page that will direct a user to the Google login page.

This identity provider will call Google's API to load the user's email and preferred_username and use those as email and username to lookup or create a user in FusionAuth depending on the linking strategy configured for this identity provider. Additional claims returned by Google can be used to reconcile the user to FusionAuth by using a Google Reconcile Lambda.

FusionAuth will also store the Google id_token returned from the Google API in the identityProviderLink object, in the identityProviderLink.token field. This object is accessible using the Link API.

The identityProviderLink object stores the token so that you can use it in your application to call Google APIs on behalf of the user if desired.

If you need the refresh token to obtain new access tokens, the typed Google IdP will not meet your needs, since it stores the id_token on the Link. However, Google supports OIDC, which in turn allows for refresh tokens. Therefore, please use an OpenID Connect Identity Provider.

note

Prior to version 1.28.0, the token was stored in the UserRegistration object, in the tokens Map.

Please note if an idp_hint is appended to the OAuth Authorize endpoint, then the login method interaction will be redirect, even if popup interaction is explicitly configured.

Create Google Identity Provider#

Request#

API Key Authentication
Create a Google Identity Provider using a randomly generated Id
POST/api/identity-provider
OpenAPI Spec
API Key Authentication
Create a Google Identity Provider with the provided unique Id
POST/api/identity-provider/{identityProviderId}
OpenAPI Spec

The type in the request JSON indicates this is the Google Identity Provider type.

Request Parameters#

identityProviderId UUID optional Defaults to secure random UUID Available since 1.61.0Immutable

The Id to use for the new Identity Provider. If an Id is not provided, a secure random UUID is generated. If neither an Id nor identityProvider.name are provided, the legacy fixed Google IdP Id 82339786-3dff-42a6-aac6-1f1ceecb6c46 will be used.

Request Body#
identityProvider.applicationConfiguration Map<UUID,Object> optional

The configuration for each Application that the identity provider is enabled for.

identityProvider.applicationConfiguration[applicationId].buttonText String optional

This is an optional Application specific override for the top level buttonText.

Since 1.44.0

The identityProvider.applicationConfiguration[applicationId].buttonText value may only be used when the identityProvider.loginMethod is set to UseRedirect. The button text is managed by Google for all other configurations. Google allows for minor adjustments using their API. You may specify any valid API parameter in the identityProvider.properties.button configuration.

identityProvider.applicationConfiguration[applicationId].client_id String optional

This is an optional Application specific override for the top level client_id.

identityProvider.applicationConfiguration[applicationId].client_secret String optional

This is an optional Application specific override for the top level client_secret.

identityProvider.applicationConfiguration[applicationId].createRegistration Boolean optional Defaults to true

Determines if a UserRegistration is created for the User automatically or not. If a user doesn't exist in FusionAuth and logs in through an identity provider, this boolean controls whether or not FusionAuth creates a registration for the User in the Application they are logging into.

identityProvider.applicationConfiguration[applicationId].enabled Boolean optional Defaults to false

Determines if this identity provider is enabled for the Application specified by the applicationId key.

identityProvider.applicationConfiguration[applicationId].properties Object optional Available since 1.44.0

This is an optional Application specific override for the top level properties.

identityProvider.applicationConfiguration[applicationId].properties.api String optional Available since 1.44.0

This is an optional Application specific override for the top level properties.api.

If this Application's loginMethod is set to UsePopup, or the Application configuration is unset and the top level loginMethod is set to UsePopup, and this value contains the conflicting ux_mode=redirect property, that single property will be replaced with ux_mode=popup.

Since 1.45.1

The properties specified in this field will override individual properties on the top level properties.api rather than overriding the entire properties.api value.

identityProvider.applicationConfiguration[applicationId].properties.button String optional Available since 1.44.0

This is an optional Application specific override for the top level properties.button.

Since 1.45.1

The properties specified in this field will override individual properties on the top level properties.button rather than overriding the entire properties.button value.

identityProvider.applicationConfiguration[applicationId].scope String optional

This is an optional Application specific override for the top level scope.

Since 1.44.0

The identityProvider.applicationConfiguration[applicationId].scope value may only be used when the identityProvider.loginMethod is set to UseRedirect. The email, profile, and openid scopes will always be requested for all other configurations.

identityProvider.buttonText String required

The top-level button text to use on the FusionAuth login page for this Identity Provider.

Since 1.44.0

The identityProvider.buttonText value may only be used when the identityProvider.loginMethod is set to UseRedirect. The button text is managed by Google for all other configurations. Google allows for minor adjustments using their API. You may specify any valid API parameter in the identityProvider.properties.button configuration.

identityProvider.attributeMappings Map<String, String> optional Available since 1.65.0

A map of attribute mappings applied during user reconciliation when a reconcile Lambda is not configured.

Each key is the FusionAuth target field path and must begin with user. or registration.. Each value is the source expression in the identity provider response payload. A dot-notated value such as email or id_token.given_name is converted to a JSON Pointer. A value that starts with / is treated as a JSON Pointer as-is.

This property cannot be used with identityProvider.lambdaConfiguration.reconcileId.

This property is ignored when identityProvider.linkingStrategy is LinkAnonymously.

This property defaults to an empty map.

Mappings that resolve to null, cannot be extracted, or cannot be written to the target field are ignored. Mappings to user.password do not set a password.

identityProvider.client_id String required

The top-level Google client id for your Application. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.client_secret String required

The top-level client secret to use with the Google Identity Provider when retrieving the long-lived token. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.debug Boolean optional Defaults to false Available since 1.7.3

Determines if debug is enabled for this provider. When enabled, an Event Log is created each time this provider is invoked to reconcile a login.

This is useful for debugging purposes, but is not intended to be left on during production. It should be enabled during integration or if you are experiencing an issue with this identity provider.

identityProvider.enabled Boolean optional Defaults to false

Determines if this provider is enabled. If it is false then it will be disabled globally.

identityProvider.lambdaConfiguration.reconcileId UUID optional Available since 1.17.0

The unique Id of the Lambda used during the user reconcile process to map custom claims from the external identity provider to the FusionAuth user.

The specified Lambda Id must be of type Reconcile.

This property cannot be used with identityProvider.attributeMappings.

identityProvider.linkingStrategy String optional Available since 1.28.0

The linking strategy to use when creating the link between the Google Identity Provider and the user.

Available since 1.65.0 You can only change this value when the identity provider is disabled. To change the linking strategy for an identity provider that is already enabled, disable the provider, change the value, and then re-enable the provider.

The possible values are:

  • CreatePendingLink - Do not automatically link, instead return a pending link identifier that can be used to link to an existing user.
  • Disabled - Disables linking automatically. You must use the API to create links. Available since 1.37.0
  • LinkAnonymously - Always create a link based upon the unique Id returned by the identify provider. A username or email is not required and will not be used to link the user. A reconcile lambda will not be used in this configuration.
  • LinkByEmail - Link to an existing user based upon email. A user will be created with the email returned by the identity provider if one does not already exist.
  • LinkByEmailForExistingUser - Only link to an existing user based upon email. A user will not be created if one does not already exist with email returned by the identity provider.
  • LinkByUsername - Link to an existing user based upon username. A user will be created with the username returned by the identity provider if one does not already exist.
  • LinkByUsernameForExistingUser - Only link to an existing user based upon username. A user will not be created if one does not already exist with username returned by the identity provider.
identityProvider.loginMethod String optional Defaults to UseRedirect Available since 1.28.0

The login method to use for this Identity Provider.

The possible values are:

  • UsePopup - When logging in use a popup window and the Google JavaScript library.
  • UseRedirect - When logging in use the Google OAuth redirect login flow.
  • UseVendorJavaScript - When logging in allow the Google JavaScript library to determine the login method.
Before version 1.44.0

If you are using a version of FusionAuth before version 1.44.0, UsePopup won't work. UseRedirect will continue to work. Please see the 1.44.0 release notes for more information. This forum post has more details on an available workaround and upgrade process.

identityProvider.name String optional

The display name of this provider instance. Required when using a provided identityProviderId or identityProvider.tenantId.

identityProvider.properties Object optional Available since 1.44.0

An object to hold configuration parameters for the Google Identity Services API. See the identityProvider.properties.api and identityProvider.properties.button fields for more detail on format and configurable values.

identityProvider.properties.api String optional Available since 1.44.0

Google Identity Services login API configuration in a properties file formatted String. Any attribute from Google's documentation can be added. Properties can be referenced in templates that support Google login to initialize the API via HTML or JavaScript. The properties specified in this field should not include the data- prefix on the property name.

If the identityProvider.loginMethod is set to UsePopup and this value contains the conflicting ux_mode=redirect property, that single property will be replaced with ux_mode=popup.

If omitted, this value will default to the following properties:

Default API Configuration Properties

auto_prompt=true
auto_select=false
cancel_on_tap_outside=false
context=signin
itp_support=true
identityProvider.properties.button String optional Available since 1.44.0

Google Identity Services button configuration in a properties file formatted String. Any attribute from Google's documentation can be added. Properties can be referenced in templates that support Google login to render the login button via HTML or JavaScript. The properties specified in this field should not include the data- prefix on the property name.

If omitted, this value will default to the following properties:

Default Button Properties

logo_alignment=left
shape=rectangular
size=large
text=signin_with
theme=outline
type=standard
identityProvider.scope String optional

The top-level scope that you are requesting from Google.

Since 1.44.0

The identityProvider.scope value may only be used when the identityProvider.loginMethod is set to UseRedirect. The email, profile, and openid scopes will always be requested for all other configurations.

identityProvider.source String optional Defaults to System Available since 1.65.0

The source of this Identity Provider.

The maximum length is 191 characters.

This value is only used on create. If provided on update, it is ignored and the existing value is preserved.

identityProvider.tenantConfiguration Map<UUID, Object> Available since 1.32.0

The configuration for each Tenant that limits the number of links a user may have for a particular identity provider.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount Object Available since 1.32.0

The policy that governs identity provider links on a Tenant.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.enabled Boolean Defaults to false Available since 1.32.0

When enabled, the number of identity provider links a user may create is enforced by maximumLinks.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.maximumLinks Integer Defaults to 42 Available since 1.32.0

The maximum number of links that a user can have for a particular identity provider. This configuration is specific to this IdP. So a user can have more links than this number, but for this particular IdP, the number of links will be limited and enforced.

identityProvider.tenantId UUID optional Available since 1.62.0

The unique Id of the Tenant.

Providing a value creates an identity provider scoped to the specified tenant, otherwise a global identity provider is created. Tenant-scoped identity providers can only be used to authenticate in the context of the specified tenant. Global identity providers can be used with any tenant.

This value is read-only once the identity provider is created.

identityProvider.type String required

This field must be set to Google.

Example Google Request JSON

{
  "identityProvider": {
    "applicationConfiguration": {
      "1c212e59-0d0e-6b1a-ad48-f4f92793be32": {
        "createRegistration": true,
        "enabled": true
      }
    },
    "buttonText": "Login with Google",
    "client_id": "254311943570-8e2i2hds0qdnee4124socceeh2q2mtjl.apps.googleusercontent.com",
    "client_secret": "BRr7x7xz_-cXxIFznBDIdxF1",
    "debug": false,
    "enabled": true,
    "properties": {
      "api": "# Omit the data- prefix\nauto_prompt=true\nauto_select=false\ncancel_on_tap_outside=false\ncontext=signin\nitp_support=true",
      "button": "# Omit the data- prefix\nlogo_alignment=left\nshape=rectangular\nsize=large\ntext=signin_with\ntheme=outline\ntype=standard"
    },
    "scope": "profile",
    "name": "Google Provider",
    "tenantConfiguration": {
      "e872a880-b14f-6d62-c312-cb40f22af465": {
        "limitUserLinkCount": {
          "enabled": false,
          "maximumLinks": 42
        }
      }
    },
    "type": "Google"
  }
}

Response#

Response Codes
CodeDescription
200The request was successful. The response will contain a JSON body.
400The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present.
401You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
409A conflict was encountered processing this request.
500There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.

Response Body#

identityProvider.applicationConfiguration Map<UUID, Object>

The configuration for each Application that the identity provider is enabled for.

identityProvider.applicationConfiguration[applicationId].buttonText String

This is an optional Application specific override for the top level buttonText.

identityProvider.applicationConfiguration[applicationId].client_id String

This is an optional Application specific override for the top level client_id.

identityProvider.applicationConfiguration[applicationId].client_secret String

This is an optional Application specific override for the top level client_secret.

identityProvider.applicationConfiguration[applicationId].createRegistration Boolean

Determines if a UserRegistration is created for the User automatically or not. If a user doesn't exist in FusionAuth and logs in through an identity provider, this boolean controls whether or not FusionAuth creates a registration for the User in the Application they are logging into.

identityProvider.applicationConfiguration[applicationId].enabled Boolean

Determines if this identity provider is enabled for the Application specified by the applicationId key.

identityProvider.applicationConfiguration[applicationId].scope String

This is an optional Application specific override for the top level scope.

identityProvider.buttonText String

The top-level button text to use on the FusionAuth login page for this Identity Provider.

identityProvider.attributeMappings Map<String, String> Available since 1.65.0

A map of attribute mappings applied during user reconciliation when a reconcile Lambda is not configured.

Each key is the FusionAuth target field path and begins with user. or registration.. Each value is the source expression from the identity provider response payload.

This configuration is ignored when identityProvider.linkingStrategy is LinkAnonymously.

Mappings that resolve to null, cannot be extracted, or cannot be written to the target field are ignored at runtime. Mappings to user.password do not set a password.

identityProvider.client_id String

The top-level Google client id for your Application. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.client_secret String

The top-level client secret to use with the Google Identity Provider when retrieving the long-lived token. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.debug Boolean

Determines if debug is enabled for this provider. When enabled, each time this provider is invoked to reconcile a login an Event Log will be created.

identityProvider.enabled Boolean

Determines if this provider is enabled. If it is false then it will be disabled globally.

identityProvider.id UUID

The Id of the provider.

identityProvider.insertInstant Long

The instant that the provider was added to the FusionAuth database.

identityProvider.lastUpdateInstant Long

The instant that the provider was updated in the FusionAuth database.

identityProvider.linkingStrategy String optional Available since 1.28.0

The linking strategy to use when creating the link between the Google Identity Provider and the user.

The possible values are:

  • CreatePendingLink - Create pending link.
  • Disabled - Disables linking automatically. Available since 1.37.0
  • LinkAnonymously - Anonymous Link.
  • LinkByEmail - Link on email. Create the user if they do not exist.
  • LinkByEmailForExistingUser - Link on email. Do not create the user if they do not exist.
  • LinkByUsername - Link on username. Create the user if they do not exist.
  • LinkByUsernameForExistingUser - Link on username. Do not create the user if they do not exist.
identityProvider.loginMethod String Available since 1.28.0

The login method to use for this Identity Provider.

The possible values are:

  • UsePopup - When logging in use a popup window and the Google JavaScript library.
  • UseRedirect - When logging in use the Google OAuth redirect login flow.
  • UseVendorJavaScript - When logging in allow the Google JavaScript library to determine the login method.
identityProvider.name String

The name of the provider. This is only used for display purposes.

identityProvider.properties Object Available since 1.44.0

An object to hold configuration parameters for the Google Identity Services API.

identityProvider.properties.api String Available since 1.44.0

Google Identity Services login API configuration in a properties file formatted String. Properties can be referenced in templates that support Google login to initialize the API via HTML or JavaScript.

identityProvider.properties.button String Available since 1.44.0

Google Identity Services button configuration in a properties file formatted String. Properties can be referenced in templates that support Google login to render the login button via HTML or JavaScript.

identityProvider.scope String

The top-level scope that you are requesting from Google.

identityProvider.source String Available since 1.65.0

The source for this Identity Provider.

identityProvider.tenantConfiguration Map<UUID, Object> Available since 1.32.0

The configuration for each Tenant that limits the number of links a user may have for a particular identity provider.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount Object Available since 1.32.0

The policy that governs identity provider links on a Tenant.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.enabled Boolean Defaults to false Available since 1.32.0

When enabled, the number of identity provider links a user may create is enforced by maximumLinks.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.maximumLinks Integer Defaults to 42 Available since 1.32.0

The maximum number of links that a user can have for a particular identity provider. This configuration is specific to this IdP. So a user can have more links than this number, but for this particular IdP, the number of links will be limited and enforced.

identityProvider.tenantId UUID Available since 1.62.0

The unique Id of the Tenant. This value is present if the identity provider is tenant-scoped. Tenant-scoped identity providers can only be used to authenticate in the context of the specified tenant. This value is read-only once the key is created.

identityProvider.type String

The type of this provider, this field will always be set to Google.

Example Google Response JSON

{
  "identityProvider": {
    "applicationConfiguration": {
      "1c212e59-0d0e-6b1a-ad48-f4f92793be32": {
        "createRegistration": true,
        "enabled": true
      }
    },
    "buttonText": "Login with Google",
    "client_id": "254311943570-8e2i2hds0qdnee4124socceeh2q2mtjl.apps.googleusercontent.com",
    "client_secret": "BRr7x7xz_-cXxIFznBDIdxF1",
    "debug": false,
    "enabled": true,
    "id": "9a57b1e0-3c2d-4f0e-8d9d-2c6e7f4a5b83",
    "insertInstant": 1595361142909,
    "lastUpdateInstant": 1595361143101,
    "linkingStrategy": "LinkByEmail",
    "loginMethod": "UseRedirect",
    "name": "Google Provider",
    "properties": {
      "api": "# Omit the data- prefix\nauto_prompt=true\nauto_select=false\ncancel_on_tap_outside=false\ncontext=signin\nitp_support=true",
      "button": "# Omit the data- prefix\nlogo_alignment=left\nshape=rectangular\nsize=large\ntext=signin_with\ntheme=outline\ntype=standard"
    },
    "scope": "profile",
    "tenantConfiguration": {
      "e872a880-b14f-6d62-c312-cb40f22af465": {
        "limitUserLinkCount": {
          "enabled": false,
          "maximumLinks": 42
        }
      }
    },
    "type": "Google"
  }
}

Retrieve Google Identity Provider#

Request#

API Key Authentication
Retrieve Google Identity Provider by Id
GET/api/identity-provider/{identityProviderId}
OpenAPI Spec
API Key Authentication
Retrieve Google Identity Providers by type
GET/api/identity-provider?type=Google
OpenAPI Spec

Request Parameters#

identityProviderId UUID required

The unique Id of the Google Identity Provider to retrieve.

Response#

Response Codes
CodeDescription
200The request was successful. The response will contain a JSON body.
400The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present.
401You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
404The object you requested doesn't exist. The response will be empty.
500There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.

Response Body#

identityProvider.applicationConfiguration Map<UUID, Object>

The configuration for each Application that the identity provider is enabled for.

identityProvider.applicationConfiguration[applicationId].buttonText String

This is an optional Application specific override for the top level buttonText.

identityProvider.applicationConfiguration[applicationId].client_id String

This is an optional Application specific override for the top level client_id.

identityProvider.applicationConfiguration[applicationId].client_secret String

This is an optional Application specific override for the top level client_secret.

identityProvider.applicationConfiguration[applicationId].createRegistration Boolean

Determines if a UserRegistration is created for the User automatically or not. If a user doesn't exist in FusionAuth and logs in through an identity provider, this boolean controls whether or not FusionAuth creates a registration for the User in the Application they are logging into.

identityProvider.applicationConfiguration[applicationId].enabled Boolean

Determines if this identity provider is enabled for the Application specified by the applicationId key.

identityProvider.applicationConfiguration[applicationId].scope String

This is an optional Application specific override for the top level scope.

identityProvider.buttonText String

The top-level button text to use on the FusionAuth login page for this Identity Provider.

identityProvider.attributeMappings Map<String, String> Available since 1.65.0

A map of attribute mappings applied during user reconciliation when a reconcile Lambda is not configured.

Each key is the FusionAuth target field path and begins with user. or registration.. Each value is the source expression from the identity provider response payload.

This configuration is ignored when identityProvider.linkingStrategy is LinkAnonymously.

Mappings that resolve to null, cannot be extracted, or cannot be written to the target field are ignored at runtime. Mappings to user.password do not set a password.

identityProvider.client_id String

The top-level Google client id for your Application. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.client_secret String

The top-level client secret to use with the Google Identity Provider when retrieving the long-lived token. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.debug Boolean

Determines if debug is enabled for this provider. When enabled, each time this provider is invoked to reconcile a login an Event Log will be created.

identityProvider.enabled Boolean

Determines if this provider is enabled. If it is false then it will be disabled globally.

identityProvider.id UUID

The Id of the provider.

identityProvider.insertInstant Long

The instant that the provider was added to the FusionAuth database.

identityProvider.lastUpdateInstant Long

The instant that the provider was updated in the FusionAuth database.

identityProvider.linkingStrategy String optional Available since 1.28.0

The linking strategy to use when creating the link between the Google Identity Provider and the user.

The possible values are:

  • CreatePendingLink - Create pending link.
  • Disabled - Disables linking automatically. Available since 1.37.0
  • LinkAnonymously - Anonymous Link.
  • LinkByEmail - Link on email. Create the user if they do not exist.
  • LinkByEmailForExistingUser - Link on email. Do not create the user if they do not exist.
  • LinkByUsername - Link on username. Create the user if they do not exist.
  • LinkByUsernameForExistingUser - Link on username. Do not create the user if they do not exist.
identityProvider.loginMethod String Available since 1.28.0

The login method to use for this Identity Provider.

The possible values are:

  • UsePopup - When logging in use a popup window and the Google JavaScript library.
  • UseRedirect - When logging in use the Google OAuth redirect login flow.
  • UseVendorJavaScript - When logging in allow the Google JavaScript library to determine the login method.
identityProvider.name String

The name of the provider. This is only used for display purposes.

identityProvider.properties Object Available since 1.44.0

An object to hold configuration parameters for the Google Identity Services API.

identityProvider.properties.api String Available since 1.44.0

Google Identity Services login API configuration in a properties file formatted String. Properties can be referenced in templates that support Google login to initialize the API via HTML or JavaScript.

identityProvider.properties.button String Available since 1.44.0

Google Identity Services button configuration in a properties file formatted String. Properties can be referenced in templates that support Google login to render the login button via HTML or JavaScript.

identityProvider.scope String

The top-level scope that you are requesting from Google.

identityProvider.source String Available since 1.65.0

The source for this Identity Provider.

identityProvider.tenantConfiguration Map<UUID, Object> Available since 1.32.0

The configuration for each Tenant that limits the number of links a user may have for a particular identity provider.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount Object Available since 1.32.0

The policy that governs identity provider links on a Tenant.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.enabled Boolean Defaults to false Available since 1.32.0

When enabled, the number of identity provider links a user may create is enforced by maximumLinks.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.maximumLinks Integer Defaults to 42 Available since 1.32.0

The maximum number of links that a user can have for a particular identity provider. This configuration is specific to this IdP. So a user can have more links than this number, but for this particular IdP, the number of links will be limited and enforced.

identityProvider.tenantId UUID Available since 1.62.0

The unique Id of the Tenant. This value is present if the identity provider is tenant-scoped. Tenant-scoped identity providers can only be used to authenticate in the context of the specified tenant. This value is read-only once the key is created.

identityProvider.type String

The type of this provider, this field will always be set to Google.

Example Google Response JSON

{
  "identityProvider": {
    "applicationConfiguration": {
      "1c212e59-0d0e-6b1a-ad48-f4f92793be32": {
        "createRegistration": true,
        "enabled": true
      }
    },
    "buttonText": "Login with Google",
    "client_id": "254311943570-8e2i2hds0qdnee4124socceeh2q2mtjl.apps.googleusercontent.com",
    "client_secret": "BRr7x7xz_-cXxIFznBDIdxF1",
    "debug": false,
    "enabled": true,
    "id": "9a57b1e0-3c2d-4f0e-8d9d-2c6e7f4a5b83",
    "insertInstant": 1595361142909,
    "lastUpdateInstant": 1595361143101,
    "linkingStrategy": "LinkByEmail",
    "loginMethod": "UseRedirect",
    "name": "Google Provider",
    "properties": {
      "api": "# Omit the data- prefix\nauto_prompt=true\nauto_select=false\ncancel_on_tap_outside=false\ncontext=signin\nitp_support=true",
      "button": "# Omit the data- prefix\nlogo_alignment=left\nshape=rectangular\nsize=large\ntext=signin_with\ntheme=outline\ntype=standard"
    },
    "scope": "profile",
    "tenantConfiguration": {
      "e872a880-b14f-6d62-c312-cb40f22af465": {
        "limitUserLinkCount": {
          "enabled": false,
          "maximumLinks": 42
        }
      }
    },
    "type": "Google"
  }
}

Update Google Identity Provider#

This API is used to update an existing Google Identity Provider.

You must specify all of the properties of the Google Identity Provider when calling this API with the PUT HTTP method. When used with PUT, this API doesn't merge the existing Google Identity Provider and your new data. It replaces the existing Google Identity Provider with your new data.

Utilize the PATCH HTTP method to send specific changes to merge into an existing Google Identity Provider.

Request#

API Key Authentication
Update Google Identity Provider by Id
PUT/api/identity-provider/{identityProviderId}
OpenAPI Spec
PATCH/api/identity-provider/{identityProviderId}
OpenAPI Spec
note

For backward compatibility, the PATCH method accepts the same media type (specified by a Content-Type of application/json) and body as the PUT request. You can also use the following media types for different behavior:

For details, see the PATCH documentation.

Using a media type of application/json merges the provided request parameters into the existing object. As a result, all parameters are optional with PATCH: only provide the values you want to change. To remove a value, provide a null value. Patching an Array appends all values in the new list to the old list.

API Key Authentication
Update Google Identity Provider by type Deprecated
PUT/api/identity-provider?type=Google
PATCH/api/identity-provider?type=Google
note

For backward compatibility, the PATCH method accepts the same media type (specified by a Content-Type of application/json) and body as the PUT request. You can also use the following media types for different behavior:

For details, see the PATCH documentation.

Using a media type of application/json merges the provided request parameters into the existing object. As a result, all parameters are optional with PATCH: only provide the values you want to change. To remove a value, provide a null value. Patching an Array appends all values in the new list to the old list.

Deprecated since 1.61.0
Prefer updating by Id. Updating by type attempts to update the Identity Provider with the legacy fixed Id 82339786-3dff-42a6-aac6-1f1ceecb6c46.

Request Parameters#

identityProviderId UUID required Immutable

The unique Id of the Google Identity Provider to update.

Request Body#
identityProvider.applicationConfiguration Map<UUID,Object> optional

The configuration for each Application that the identity provider is enabled for.

identityProvider.applicationConfiguration[applicationId].buttonText String optional

This is an optional Application specific override for the top level buttonText.

Since 1.44.0

The identityProvider.applicationConfiguration[applicationId].buttonText value may only be used when the identityProvider.loginMethod is set to UseRedirect. The button text is managed by Google for all other configurations. Google allows for minor adjustments using their API. You may specify any valid API parameter in the identityProvider.properties.button configuration.

identityProvider.applicationConfiguration[applicationId].client_id String optional

This is an optional Application specific override for the top level client_id.

identityProvider.applicationConfiguration[applicationId].client_secret String optional

This is an optional Application specific override for the top level client_secret.

identityProvider.applicationConfiguration[applicationId].createRegistration Boolean optional Defaults to true

Determines if a UserRegistration is created for the User automatically or not. If a user doesn't exist in FusionAuth and logs in through an identity provider, this boolean controls whether or not FusionAuth creates a registration for the User in the Application they are logging into.

identityProvider.applicationConfiguration[applicationId].enabled Boolean optional Defaults to false

Determines if this identity provider is enabled for the Application specified by the applicationId key.

identityProvider.applicationConfiguration[applicationId].properties Object optional Available since 1.44.0

This is an optional Application specific override for the top level properties.

identityProvider.applicationConfiguration[applicationId].properties.api String optional Available since 1.44.0

This is an optional Application specific override for the top level properties.api.

If this Application's loginMethod is set to UsePopup, or the Application configuration is unset and the top level loginMethod is set to UsePopup, and this value contains the conflicting ux_mode=redirect property, that single property will be replaced with ux_mode=popup.

Since 1.45.1

The properties specified in this field will override individual properties on the top level properties.api rather than overriding the entire properties.api value.

identityProvider.applicationConfiguration[applicationId].properties.button String optional Available since 1.44.0

This is an optional Application specific override for the top level properties.button.

Since 1.45.1

The properties specified in this field will override individual properties on the top level properties.button rather than overriding the entire properties.button value.

identityProvider.applicationConfiguration[applicationId].scope String optional

This is an optional Application specific override for the top level scope.

Since 1.44.0

The identityProvider.applicationConfiguration[applicationId].scope value may only be used when the identityProvider.loginMethod is set to UseRedirect. The email, profile, and openid scopes will always be requested for all other configurations.

identityProvider.buttonText String required

The top-level button text to use on the FusionAuth login page for this Identity Provider.

Since 1.44.0

The identityProvider.buttonText value may only be used when the identityProvider.loginMethod is set to UseRedirect. The button text is managed by Google for all other configurations. Google allows for minor adjustments using their API. You may specify any valid API parameter in the identityProvider.properties.button configuration.

identityProvider.attributeMappings Map<String, String> optional Available since 1.65.0

A map of attribute mappings applied during user reconciliation when a reconcile Lambda is not configured.

Each key is the FusionAuth target field path and must begin with user. or registration.. Each value is the source expression in the identity provider response payload. A dot-notated value such as email or id_token.given_name is converted to a JSON Pointer. A value that starts with / is treated as a JSON Pointer as-is.

This property cannot be used with identityProvider.lambdaConfiguration.reconcileId.

This property is ignored when identityProvider.linkingStrategy is LinkAnonymously.

This property defaults to an empty map.

Mappings that resolve to null, cannot be extracted, or cannot be written to the target field are ignored. Mappings to user.password do not set a password.

identityProvider.client_id String required

The top-level Google client id for your Application. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.client_secret String required

The top-level client secret to use with the Google Identity Provider when retrieving the long-lived token. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.debug Boolean optional Defaults to false Available since 1.7.3

Determines if debug is enabled for this provider. When enabled, an Event Log is created each time this provider is invoked to reconcile a login.

This is useful for debugging purposes, but is not intended to be left on during production. It should be enabled during integration or if you are experiencing an issue with this identity provider.

identityProvider.enabled Boolean optional Defaults to false

Determines if this provider is enabled. If it is false then it will be disabled globally.

identityProvider.lambdaConfiguration.reconcileId UUID optional Available since 1.17.0

The unique Id of the Lambda used during the user reconcile process to map custom claims from the external identity provider to the FusionAuth user.

The specified Lambda Id must be of type Reconcile.

This property cannot be used with identityProvider.attributeMappings.

identityProvider.linkingStrategy String optional Available since 1.28.0

The linking strategy to use when creating the link between the Google Identity Provider and the user.

Available since 1.65.0 You can only change this value when the identity provider is disabled. To change the linking strategy for an identity provider that is already enabled, disable the provider, change the value, and then re-enable the provider.

The possible values are:

  • CreatePendingLink - Do not automatically link, instead return a pending link identifier that can be used to link to an existing user.
  • Disabled - Disables linking automatically. You must use the API to create links. Available since 1.37.0
  • LinkAnonymously - Always create a link based upon the unique Id returned by the identify provider. A username or email is not required and will not be used to link the user. A reconcile lambda will not be used in this configuration.
  • LinkByEmail - Link to an existing user based upon email. A user will be created with the email returned by the identity provider if one does not already exist.
  • LinkByEmailForExistingUser - Only link to an existing user based upon email. A user will not be created if one does not already exist with email returned by the identity provider.
  • LinkByUsername - Link to an existing user based upon username. A user will be created with the username returned by the identity provider if one does not already exist.
  • LinkByUsernameForExistingUser - Only link to an existing user based upon username. A user will not be created if one does not already exist with username returned by the identity provider.
identityProvider.name String optional

The display name of this provider instance. Required when using a provided identityProviderId or identityProvider.tenantId.

identityProvider.properties Object optional Available since 1.44.0

An object to hold configuration parameters for the Google Identity Services API. See the identityProvider.properties.api and identityProvider.properties.button fields for more detail on format and configurable values.

identityProvider.properties.api String optional Available since 1.44.0

Google Identity Services login API configuration in a properties file formatted String. Any attribute from Google's documentation can be added. Properties can be referenced in templates that support Google login to initialize the API via HTML or JavaScript. The properties specified in this field should not include the data- prefix on the property name.

If the identityProvider.loginMethod is set to UsePopup and this value contains the conflicting ux_mode=redirect property, that single property will be replaced with ux_mode=popup.

If omitted, this value will default to the following properties:

Default API Configuration Properties

auto_prompt=true
auto_select=false
cancel_on_tap_outside=false
context=signin
itp_support=true
identityProvider.properties.button String optional Available since 1.44.0

Google Identity Services button configuration in a properties file formatted String. Any attribute from Google's documentation can be added. Properties can be referenced in templates that support Google login to render the login button via HTML or JavaScript. The properties specified in this field should not include the data- prefix on the property name.

If omitted, this value will default to the following properties:

Default Button Properties

logo_alignment=left
shape=rectangular
size=large
text=signin_with
theme=outline
type=standard
identityProvider.scope String optional

The top-level scope that you are requesting from Google.

Since 1.44.0

The identityProvider.scope value may only be used when the identityProvider.loginMethod is set to UseRedirect. The email, profile, and openid scopes will always be requested for all other configurations.

identityProvider.source String optional Defaults to System Available since 1.65.0

The source of this Identity Provider.

The maximum length is 191 characters.

This value is only used on create. If provided on update, it is ignored and the existing value is preserved.

identityProvider.tenantConfiguration Map<UUID, Object> Available since 1.32.0

The configuration for each Tenant that limits the number of links a user may have for a particular identity provider.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount Object Available since 1.32.0

The policy that governs identity provider links on a Tenant.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.enabled Boolean Defaults to false Available since 1.32.0

When enabled, the number of identity provider links a user may create is enforced by maximumLinks.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.maximumLinks Integer Defaults to 42 Available since 1.32.0

The maximum number of links that a user can have for a particular identity provider. This configuration is specific to this IdP. So a user can have more links than this number, but for this particular IdP, the number of links will be limited and enforced.

identityProvider.tenantId UUID optional Available since 1.62.0

The unique Id of the Tenant.

Providing a value creates an identity provider scoped to the specified tenant, otherwise a global identity provider is created. Tenant-scoped identity providers can only be used to authenticate in the context of the specified tenant. Global identity providers can be used with any tenant.

This value is read-only once the identity provider is created.

identityProvider.type String required

This field must be set to Google.

Example Google Request JSON

{
  "identityProvider": {
    "applicationConfiguration": {
      "1c212e59-0d0e-6b1a-ad48-f4f92793be32": {
        "createRegistration": true,
        "enabled": true
      }
    },
    "buttonText": "Login with Google",
    "client_id": "254311943570-8e2i2hds0qdnee4124socceeh2q2mtjl.apps.googleusercontent.com",
    "client_secret": "BRr7x7xz_-cXxIFznBDIdxF1",
    "debug": false,
    "enabled": true,
    "properties": {
      "api": "# Omit the data- prefix\nauto_prompt=true\nauto_select=false\ncancel_on_tap_outside=false\ncontext=signin\nitp_support=true",
      "button": "# Omit the data- prefix\nlogo_alignment=left\nshape=rectangular\nsize=large\ntext=signin_with\ntheme=outline\ntype=standard"
    },
    "scope": "profile",
    "name": "Google Provider",
    "tenantConfiguration": {
      "e872a880-b14f-6d62-c312-cb40f22af465": {
        "limitUserLinkCount": {
          "enabled": false,
          "maximumLinks": 42
        }
      }
    },
    "type": "Google"
  }
}

Response#

The response for this API contains the Google Identity Provider.

Response Codes
CodeDescription
200The request was successful. The response will contain a JSON body.
400The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present.
401You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
404The object you are trying to update doesn't exist. The response will be empty.
409A conflict was encountered processing this request. If the response has a general error code of [retryableConflict], then the client should exponentially backoff and retry the request.
500There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.

Response Body#

identityProvider.applicationConfiguration Map<UUID, Object>

The configuration for each Application that the identity provider is enabled for.

identityProvider.applicationConfiguration[applicationId].buttonText String

This is an optional Application specific override for the top level buttonText.

identityProvider.applicationConfiguration[applicationId].client_id String

This is an optional Application specific override for the top level client_id.

identityProvider.applicationConfiguration[applicationId].client_secret String

This is an optional Application specific override for the top level client_secret.

identityProvider.applicationConfiguration[applicationId].createRegistration Boolean

Determines if a UserRegistration is created for the User automatically or not. If a user doesn't exist in FusionAuth and logs in through an identity provider, this boolean controls whether or not FusionAuth creates a registration for the User in the Application they are logging into.

identityProvider.applicationConfiguration[applicationId].enabled Boolean

Determines if this identity provider is enabled for the Application specified by the applicationId key.

identityProvider.applicationConfiguration[applicationId].scope String

This is an optional Application specific override for the top level scope.

identityProvider.buttonText String

The top-level button text to use on the FusionAuth login page for this Identity Provider.

identityProvider.attributeMappings Map<String, String> Available since 1.65.0

A map of attribute mappings applied during user reconciliation when a reconcile Lambda is not configured.

Each key is the FusionAuth target field path and begins with user. or registration.. Each value is the source expression from the identity provider response payload.

This configuration is ignored when identityProvider.linkingStrategy is LinkAnonymously.

Mappings that resolve to null, cannot be extracted, or cannot be written to the target field are ignored at runtime. Mappings to user.password do not set a password.

identityProvider.client_id String

The top-level Google client id for your Application. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.client_secret String

The top-level client secret to use with the Google Identity Provider when retrieving the long-lived token. This value is retrieved from the Google developer website when you setup your Google developer account.

identityProvider.debug Boolean

Determines if debug is enabled for this provider. When enabled, each time this provider is invoked to reconcile a login an Event Log will be created.

identityProvider.enabled Boolean

Determines if this provider is enabled. If it is false then it will be disabled globally.

identityProvider.id UUID

The Id of the provider.

identityProvider.insertInstant Long

The instant that the provider was added to the FusionAuth database.

identityProvider.lastUpdateInstant Long

The instant that the provider was updated in the FusionAuth database.

identityProvider.linkingStrategy String optional Available since 1.28.0

The linking strategy to use when creating the link between the Google Identity Provider and the user.

The possible values are:

  • CreatePendingLink - Create pending link.
  • Disabled - Disables linking automatically. Available since 1.37.0
  • LinkAnonymously - Anonymous Link.
  • LinkByEmail - Link on email. Create the user if they do not exist.
  • LinkByEmailForExistingUser - Link on email. Do not create the user if they do not exist.
  • LinkByUsername - Link on username. Create the user if they do not exist.
  • LinkByUsernameForExistingUser - Link on username. Do not create the user if they do not exist.
identityProvider.name String

The name of the provider. This is only used for display purposes.

identityProvider.properties Object Available since 1.44.0

An object to hold configuration parameters for the Google Identity Services API.

identityProvider.properties.api String Available since 1.44.0

Google Identity Services login API configuration in a properties file formatted String. Properties can be referenced in templates that support Google login to initialize the API via HTML or JavaScript.

identityProvider.properties.button String Available since 1.44.0

Google Identity Services button configuration in a properties file formatted String. Properties can be referenced in templates that support Google login to render the login button via HTML or JavaScript.

identityProvider.scope String

The top-level scope that you are requesting from Google.

identityProvider.source String Available since 1.65.0

The source for this Identity Provider.

identityProvider.tenantConfiguration Map<UUID, Object> Available since 1.32.0

The configuration for each Tenant that limits the number of links a user may have for a particular identity provider.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount Object Available since 1.32.0

The policy that governs identity provider links on a Tenant.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.enabled Boolean Defaults to false Available since 1.32.0

When enabled, the number of identity provider links a user may create is enforced by maximumLinks.

identityProvider.tenantConfiguration[tenantId].limitUserLinkCount.maximumLinks Integer Defaults to 42 Available since 1.32.0

The maximum number of links that a user can have for a particular identity provider. This configuration is specific to this IdP. So a user can have more links than this number, but for this particular IdP, the number of links will be limited and enforced.

identityProvider.tenantId UUID Available since 1.62.0

The unique Id of the Tenant. This value is present if the identity provider is tenant-scoped. Tenant-scoped identity providers can only be used to authenticate in the context of the specified tenant. This value is read-only once the key is created.

identityProvider.type String

The type of this provider, this field will always be set to Google.

Example Google Response JSON

{
  "identityProvider": {
    "applicationConfiguration": {
      "1c212e59-0d0e-6b1a-ad48-f4f92793be32": {
        "createRegistration": true,
        "enabled": true
      }
    },
    "buttonText": "Login with Google",
    "client_id": "254311943570-8e2i2hds0qdnee4124socceeh2q2mtjl.apps.googleusercontent.com",
    "client_secret": "BRr7x7xz_-cXxIFznBDIdxF1",
    "debug": false,
    "enabled": true,
    "id": "9a57b1e0-3c2d-4f0e-8d9d-2c6e7f4a5b83",
    "insertInstant": 1595361142909,
    "lastUpdateInstant": 1595361143101,
    "linkingStrategy": "LinkByEmail",
    "loginMethod": "UseRedirect",
    "name": "Google Provider",
    "properties": {
      "api": "# Omit the data- prefix\nauto_prompt=true\nauto_select=false\ncancel_on_tap_outside=false\ncontext=signin\nitp_support=true",
      "button": "# Omit the data- prefix\nlogo_alignment=left\nshape=rectangular\nsize=large\ntext=signin_with\ntheme=outline\ntype=standard"
    },
    "scope": "profile",
    "tenantConfiguration": {
      "e872a880-b14f-6d62-c312-cb40f22af465": {
        "limitUserLinkCount": {
          "enabled": false,
          "maximumLinks": 42
        }
      }
    },
    "type": "Google"
  }
}

Delete Google Identity Provider#

Request#

API Key Authentication
Delete Google Identity Provider by Id
DELETE/api/identity-provider/{identityProviderId}
OpenAPI Spec
API Key Authentication
Delete Google Identity Provider by type Deprecated
DELETE/api/identity-provider?type=Google
Deprecated since 1.61.0
Prefer deleting by Id. Deleting by type attempts to delete the Identity Provider with the legacy fixed Id 82339786-3dff-42a6-aac6-1f1ceecb6c46.

Request Parameters#

identityProviderId UUID required

The unique Id of the Google Identity Provider to delete.

Response#

This API does not return a JSON response body.

Response Codes
CodeDescription
200The request was successful.
400The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present.
401You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
404The object you requested doesn't exist. The response will be empty.
500There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.

Complete the Google Login#

This API allows you to complete a Google login after authenticating a user using the Google API. If you are using the FusionAuth login UI with the Google button you will not utilize this API directly.

This API is intended to be used if you want to build your own login page and you have added the Google login button to your own login page and you then need to complete the login with FusionAuth.

For example, if you built your own login page, you could add a "Login with Google" button and complete the Google authentication. When you complete the Google authentication you will have been returned a token or code from Google. Using this API you can pass that token or code to FusionAuth and we will complete the login workflow and reconcile the user to FusionAuth.

The user does not need to exist yet in FusionAuth to utilize this API, depending on the configured linking strategy. The token or code returned from Google will be used to retrieve the user's email address or username and if that user does not yet exist in FusionAuth the user may be created.

If createRegistration has been enabled for this identity provider and the user does not yet have a registration for this application, a registration will be automatically created for the user. The user will be assigned any default roles configured for the application.

If createRegistration has not been enabled, a registration will not be created if one does not yet exist. This is useful if you wish to manually provision users and then subsequently allow them to login with Google.

Request#

No Authentication Required
Complete Google Login
POST/api/identity-provider/login
OpenAPI Spec

Request Headers#

X-Forwarded-For String optional

The IP address of a client requesting authentication. If the IP address is provided it will be stored in the user's login record. It is generally preferred to specify the IP address in the request body. If it is not provided in the request body this header value will be used if available. However, the request body value takes precedence.

X-FusionAuth-TenantId String optional

The unique Id of the tenant used to scope this API request.

The tenant Id is not required on this request even when more than one tenant has been configured because the tenant can be identified based upon the request parameters or it is otherwise not required.

Specify a tenant Id on this request when you want to ensure the request is scoped to a specific tenant. The tenant Id may be provided through this header or by using a tenant locked API key to achieve the same result.

See Making an API request using a Tenant Id for additional information.

Request Body

applicationId UUID required

The Id of the Application the user is to be logged into. This application must have Google login enabled for this request to succeed.

data.code String optional Available since 1.28.0

When using the authorization code grant, will have returned an authorization code. To complete the login request, provide the code and the redirect_uri parameters to allow FusionAuth to complete this grant by exchanging the authorization code for an access_token.

When using code you must also supply redirect_uri. If code is not provided, then token will be required.

data.redirect_uri String optional Available since 1.28.0

The redirect URI that was provided to the authorization endpoint. This value will be sent to the Token Info API as the redirect_uri parameter.

When using code this field is required.

data.token String optional

When using a popup or other login mode where has already returned you through a JavaScript callback or other mechanism, you will send this value in the token parameter. FusionAuth will use this value to request user details and then complete the login.

When using token you do not have to supply redirect_uri. If token is not provided, then code will be required.

identityProviderId UUID required

The unique Id of the identity provider to process this login request.

connectionTestId String optional Available since 1.65.0

The Id of an identity provider connection test returned by the Start an Identity Provider Connection Test API.

ipAddress String optional

The IP address of the end-user that is logging into FusionAuth. If this value is omitted FusionAuth will attempt to obtain the IP address of the client, the value will be that of the X-Forwarded-For header if provided or the last proxy that sent the request. The IP address will be stored in the User login history.

metaData.device.description String optional

A human readable description of the device represented by the device parameter.

metaData.device.lastAccessedAddress String optional

The IP address of this login request.

metaData.device.name String optional

A human readable name of the device represented by the device parameter.

metaData.device.type String optional

The type of device represented by the device parameter. Prior to version 1.46.0, this value was restricted to the following types:

  • BROWSER
  • DESKTOP
  • LAPTOP
  • MOBILE
  • OTHER
  • SERVER
  • TABLET
  • TV
  • UNKNOWN
In version 1.46.0 and beyond, this value can be any string value you'd like, have fun with it!

newDevice Boolean optional Defaults to false

Indicates that this device has never been used by this user to log in before. One of many signals used to decide whether to issue an MFA challenge as part of Intelligent MFA or the MFA Requirement Lambda. When true, triggers the New Device Webhook.

noJWT Boolean optional Defaults to false

When this value is set to true a JWT will not be issued as part of this request. The response body will not contain the token field, and the access_token and refresh_token cookies will not be written to the HTTP response. This optional parameter may be helpful when performing high volume authentication requests and the JWT is not being used, in this scenario removing the additional latency required to issue and sign the JWT may have a measurable cumulative effect on performance.

noLink Boolean optional Defaults to false Available since 1.29.0

When this value is set to true, if a link does not yet exist to a FusionAuth user, a 404 status code will be returned instead of using the requested linking strategy. This may be useful if you want to identify if a link exists before starting a full interactive workflow with the user to complete a link.

Example Request JSON using code and redirect_uri

{
  "applicationId": "10000000-0000-0002-0000-000000000001",
  "data": {
    "code": "ZSBxGPP9Ghyxd4QzSQeZv_MvIHuy_vBNKRVygPk_cJM",
    "redirect_uri": "https://login.piedpiper.com/oauth2/callback"
  },
  "identityProviderId": "82339786-3dff-42a6-aac6-1f1ceecb6c46",
  "ipAddress": "192.168.1.42"
}

Example Request JSON using token

{
  "applicationId": "10000000-0000-0002-0000-000000000001",
  "data": {
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gUS4gR29vZ2xlZSIsImlhdCI6MTUxNjIzOTAyMn0.qapE7hozQns4dyVk8TOz84zbRebv4zJ5XteDGMfq3QQ"
  },
  "identityProviderId": "82339786-3dff-42a6-aac6-1f1ceecb6c46",
  "ipAddress": "192.168.1.42"
}

Response#

The response for this API contains the User object.

Response Cookies#

Response Codes

CodeDescription
200The authentication was successful. The response will contain the User object that was authenticated.
202The user was authenticated successfully. The user is not registered for the application specified by applicationId on the request.
The response will contain the User object that was authenticated.
203The user was authenticated successfully. The user is required to change their password, the response will contain the changePasswordId to be used on the Change Password API.

Example Response JSON

{
  "changePasswordId": "XOgai4Ro68xfGiex0ngXiJ2bbhduM4Pm7h3lvF0xibQ",
  "changePasswordReason": "Expired"
}

204The login is pending action by the end user. Wait and try the request again.
212The user's email address has not yet been verified. The response will contain the User object that was authenticated. If the verification strategy has been set to FormField, the response will contain the emailVerificationId that was generated for the user.
213The user's registration has not yet been verified. The response will contain the User object that was authenticated. If the verification strategy has been set to FormField, the response will contain the registrationVerificationId that was generated for the user.
Prior to version 1.27.0, this status code was not returned, and you will see a 200 instead.
232The user is completing a login with an Identity Provider configured to use the Create a pending link linking strategy and this user does not have a link established. The API response will only contain the pendingIdPLinkId and, possibly, threatsDetected. A call to the Link API's Complete a Pending Link endpoint is required. Once the user is linked, calling this API again will allow login to succeed.

Example Response JSON

{
  "pendingIdPLinkId": "0TxfELqDE0d2Y6PqCkztz4o-lXdRyAscAXh8EAyRZsx"
}
242The user was authenticated successfully. The user has two-factor authentication enabled. Since version 1.42.0, this status code is also returned when two-factor authentication is required. The response will contain the twoFactorId to be used on the Complete Two-Factor Authentication.

Example Response JSON

{
  "methods": [
    {
      "authenticator": {
        "algorithm": "HmacSHA1",
        "codeLength": 6,
        "timeStep": 30
      },
      "id": "2KSZ",
      "method": "authenticator"
    },
    {
      "email": "richard@fusionauth.io",
      "id": "KLRT",
      "method": "email"
    }
  ],
  "twoFactorId": "YkQY5Gsyo4RlfmDciBGRmvfj3RmatUqrbjoIZ19fmw4"
}
400The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors.
401Unable to complete the login request. The user cannot be reconciled or logged in using the external identity provider.
404The user was not found, the password was incorrect, the linking strategy is set to disabled, or the value noLink: true is passed on the linking request. The response will be empty.
409The user is currently in an action that has prevented login. The response will contain the actions that prevented login.

Example Response JSON

{
  "actions": [
    {
      "actionId": "00000000-0000-0000-0000-000000000042",
      "actionerUserId": "00000000-0000-0001-0000-000000000000",
      "expiry": 1571786483322,
      "localizedName": "Prevent Login Action",
      "localizedReason": "Hard Lock",
      "name": "Prevent Login Action",
      "reason": "Hard Lock",
      "reasonCode": "hard_lock"
    }
  ]
}
410The user has expired. The response will be empty.
500There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.
503The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body.
504One or more Webhook endpoints returned an invalid response or were unreachable. Based on the transaction configuration for this event your action cannot be completed. A stack trace is provided and logged in the FusionAuth log files.

Response Body#

Response Cookies#

access_token String

The access token, this string is an encoded JSON Web Token (JWT). This cookie is written in the response as an HTTP Only session cookie.

refresh_token String

The refresh token. This cookie is written in the response as an HTTP only persistent cookie. The cookie expiration is configured in the JWT configuration for the application or the global JWT configuration.