Returns the current status of a linking process. Once status is complete, the identity's profile should be fetched again since they may have switched accounts.
status
complete
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, GetGameLinkCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, GetGameLinkCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new GetGameLinkCommand(input); const response = await client.send(command);
GetGameLinkCommandInput for command's input shape.
input
GetGameLinkCommandOutput for command's response shape.
response
config for IdentityServiceClient's config shape.
config
Returns the current status of a linking process. Once
statusiscomplete, the identity's profile should be fetched again since they may have switched accounts.Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, GetGameLinkCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, GetGameLinkCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new GetGameLinkCommand(input); const response = await client.send(command);GetGameLinkCommandInput for command's
inputshape.GetGameLinkCommandOutput for command's
responseshape.config for IdentityServiceClient's
configshape.