Link APIs
Overview
This API has been available since 1.28.0
This page contains the APIs that are used to manage Links that establish a relationship between a FusionAuth User and an Identity Provider.
Link a User
This API is used to create a link between a FusionAuth user and a user in a 3rd party identity provider. This API may be useful when you already know the unique Id of a user in a 3rd party identity provider and the corresponding FusionAuth user.
Request
POST /api/identity-provider/link
Request Body
- identityProviderId [UUID] Required
-
The Id of the identity provider. This identity provider must exist.
- identityProviderUserId [String] Required
-
The Id for the User that is provided by the identity provider. This is the value that will allow FusionAuth to link this user on future logins. It is expected to be immutable.
- userId [UUID] Required
-
The FusionAuth Id of the User that is being linked to the identity provider.
{
"identityProviderId" : "f50dbb83-4cc2-4e5e-aece-9efe068bddd9",
"identityProviderUserId" : "42",
"userId" : "fbf0e652-b2b5-45eb-b9c9-d4640889740b"
}
Response
Code | Description |
---|---|
200 |
The request was successful. The response will contain a JSON body. |
400 |
The 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. |
401 |
You 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. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
- identityProviderLink.identityProviderId [UUID]
-
The unique Id of the identity provider.
- identityProviderLink.identityProviderUserId [String]
-
The Id for the User that is provided by the identity provider.
- identityProviderLink.userId [UUID]
-
The FusionAuth User Id that is linked to the identity provider.
{
"identityProviderLink" : {
"identityProviderId" : "f50dbb83-4cc2-4e5e-aece-9efe068bddd9",
"identityProviderUserId" : "42",
"userId" : "fbf0e652-b2b5-45eb-b9c9-d4640889740b"
}
}
Complete a pending Link
This API is used complete a pending Link. If an identity provider is configured with a linking strategy of Create a pending link
, a pending link Id will be returned from the Login API that can be used here.
Request
POST /api/identity-provider/link
Request Body
- pendingIdPLinkId [String] Required
-
The pending identity provider link id.
- userId [String] Required
-
The Id of the User that is being linked to the identity provider
{
"pendingIdPLinkId": "elY3lKxvCQvsH_kfEMmBNLIl6TmydtCrNjHpFgVdxb8",
"userId": "fbf0e652-b2b5-45eb-b9c9-d4640889740b"
}
Response
Code | Description |
---|---|
200 |
The request was successful. The response will contain a JSON body. |
400 |
The 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. |
401 |
You 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. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
- identityProviderLink.identityProviderId [UUID]
-
The unique Id of the identity provider.
- identityProviderLink.identityProviderUserId [String]
-
The Id for the User that is provided by the identity provider.
- identityProviderLink.userId [UUID]
-
The FusionAuth User Id that is linked to the identity provider.
{
"identityProviderLink" : {
"identityProviderId" : "f50dbb83-4cc2-4e5e-aece-9efe068bddd9",
"identityProviderUserId" : "42",
"userId" : "fbf0e652-b2b5-45eb-b9c9-d4640889740b"
}
}
Retrieve a Link
This API is used to retrieve a single Link, all Links for a specific identity provider and user, or all Links for a user.
Request
GET /api/identity-provider/link?identityProviderId={identityProviderId}&identityProviderUserId={identityProviderUserId}&userId={userId}
Request Parameters
- identityProviderId [UUID] Required
-
The unique Id of the identity provider.
- identityProviderUserId [String] Required
-
The unique user Id in the 3rd party identity provider. Ideally this value never change and will always uniquely identify the user in the 3rd party identity provider.
- userId [UUID] Optional
-
The FusionAuth User Id that is linked to the identity provider. When this value is provided, a
404
status code will be returned if the link does not exist, or the link exists but is linked to a differentuserId
. If you wish to identify if any user is linked, omit this parameter.
Retrieve all links for a specific user by identity provider
GET /api/identity-provider/link?identityProviderId={identityProviderId}&userId={userId}
Request Parameters
- identityProviderId [UUID] Required
-
The unique Id of the identity provider.
- userId [UUID] Required
-
The FusionAuth User Id that is linked to the identity provider.
GET /api/identity-provider/link?userId={userId}
Request Parameters
- userId [UUID] Required
-
The FusionAuth User Id that is linked to the identity provider.
Response
Code | Description |
---|---|
200 |
The request was successful. The response will contain a JSON body. |
400 |
The 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. |
401 |
You 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. |
404 |
The object you requested doesn’t exist. The response will be empty. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
The response body for this API contains either a single Link or an array of Links. When you call this API with identityProviderId, identityProviderUserId, and optionally the userId, the response will contain a single Link. When you call this API with userId and either identityProviderId or identityProviderUserId, the response will contain an array of Links. All response types are defined below along with an example JSON response.
- identityProviderLink.displayName [String]
-
A human readable name for this link to help you identify this link. This value will generally be an email address, or username. This value is recorded when the link is made, and updated during the next login for this identity provider. This value may not necessarily reflect the username or email you used to authenticate with the 3rd party identity provider.
- identityProviderLink.identityProviderId [UUID]
-
The unique Id of the identity provider.
- identityProviderLink.identityProviderUserId [String]
-
The unique user Id in the 3rd party identity provider. Ideally this value never changes and will always uniquely identify the user in the 3rd party identity provider.
- identityProviderLink.insertInstant [Long]
-
The instant that the Link was added to the FusionAuth database.
- identityProviderLink.lastLoginInstant [Long]
-
The instant when the User logged in last with this identity provider using this link.
- identityProviderLink.tenantId [UUID]
-
The Id of the Tenant that this User belongs to.
- identityProviderLink.token [String]
-
The token returned from the identity provider. This is treated as an opaque token as the type varies by identity provider, this value may not be returned by all identity providers.
Note: Prior to version 1.28.0, this value can be retrieved using the User Registration APIs using the registration.token field.
- identityProviderLink.userId [UUID]
-
The FusionAuth User Id that is linked to the identity provider.
{
"identityProviderLink" : {
"displayName" : "erlich@piedpiper.com",
"identityProviderId" : "f50dbb83-4cc2-4e5e-aece-9efe068bddd9",
"identityProviderUserId" : "42",
"insertInstant" :1623183147998,
"lastLoginInstant" : 1623183152224,
"tenantId" : "30663132-6464-6665-3032-326466613934",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"userId" : "fbf0e652-b2b5-45eb-b9c9-d4640889740b"
}
}
Response Body
- identityProviderLinks [Array]
-
The list of Link objects.
- identityProviderLinks
[x]
.displayName [String] -
A human readable name for this link to help you identify this link. This value will generally be an email address, or username. This value is recorded when the link is made, and updated during the next login for this identity provider. This value may not necessarily reflect the username or email you used to authenticate with the 3rd party identity provider.
- identityProviderLinks
[x]
.identityProviderId [UUID] -
The unique Id of the identity provider.
- identityProviderLinks
[x]
.identityProviderUserId [String] -
The unique user Id in the 3rd party identity provider. Ideally this value never changes and will always uniquely identify the user in the 3rd party identity provider.
- identityProviderLinks
[x]
.insertInstant [Long] -
The instant that the Link was added to the FusionAuth database.
- identityProviderLinks
[x]
.lastLoginInstant [Long] -
The instant when the User logged in last with this identity provider using this link.
- identityProviderLinks
[x]
.tenantId [UUID] -
The Id of the Tenant that this User belongs to.
- identityProviderLinks
[x]
.token [String] -
The token returned from the identity provider. This is treated as an opaque token as the type varies by identity provider, this value may not be returned by all identity providers.
Note: Prior to version 1.28.0, this value can be retrieved using the User Registration APIs using the registration.token field.
- identityProviderLinks
[x]
.userId [UUID] -
The FusionAuth User Id that is linked to the identity provider.
{
"identityProviderLinks" : [
{
"displayName" : "erlich@piedpiper.com",
"identityProviderId" : "f50dbb83-4cc2-4e5e-aece-9efe068bddd9",
"identityProviderUserId" : "42",
"insertInstant" :1623183147998,
"lastLoginInstant" : 1623183152224,
"tenantId" : "30663132-6464-6665-3032-326466613934",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"userId" : "fbf0e652-b2b5-45eb-b9c9-d4640889740b"
},
{
"displayName" : "erlich@piedpiper.com",
"identityProviderId" : "363ae8d9-dd4d-4473-bdc6-3694f1d0329e",
"identityProviderUserId" : "9821123",
"insertInstant" :1623183147998,
"lastLoginInstant" : 1623183152224,
"tenantId" : "30663132-6464-6665-3032-326466613934",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"userId" : "fbf0e652-b2b5-45eb-b9c9-d4640889740b"
}
]
}
Unlink a User
This API is used to remove a link between a FusionAuth user and a 3rd party identity provider.
Request
Delete the Link with the given Id
DELETE /api/identity-provider/link?identityProviderId={identityProviderId}&identityProviderUserId={identityProviderUserId}&userId={userId}
Request Parameters
- identityProviderId [UUID] Required
-
The unique Id of the identity provider.
- identityProviderUserId [String] Required
-
The Id for the User that is provided by the identity provider. This is the value that will allow FusionAuth to link this user on future logins. It is expected to be immutable.
- userId [UUID] Required
-
The FusionAuth User Id that is linked to the identity provider.
Response
This API does not return a JSON response body.
Code | Description |
---|---|
200 |
The request was successful. The response will be empty. |
400 |
The 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. |
401 |
You 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. |
404 |
The object you are trying to delete doesn’t exist. The response will be empty. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |