Cancels a game link. It can no longer be used to link after cancellation.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, CancelGameLinkCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, CancelGameLinkCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new CancelGameLinkCommand(input); const response = await client.send(command);
CancelGameLinkCommandInput for command's input shape.
input
CancelGameLinkCommandOutput for command's response shape.
response
config for IdentityServiceClient's config shape.
config
Cancels a game link. It can no longer be used to link after cancellation.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, CancelGameLinkCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, CancelGameLinkCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new CancelGameLinkCommand(input); const response = await client.send(command);CancelGameLinkCommandInput for command's
inputshape.CancelGameLinkCommandOutput for command's
responseshape.config for IdentityServiceClient's
configshape.