Unfollows the given identity.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, UnfollowIdentityCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, UnfollowIdentityCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new UnfollowIdentityCommand(input); const response = await client.send(command);
UnfollowIdentityCommandInput for command's input shape.
input
UnfollowIdentityCommandOutput for command's response shape.
response
config for IdentityServiceClient's config shape.
config
Unfollows the given identity.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, UnfollowIdentityCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, UnfollowIdentityCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new UnfollowIdentityCommand(input); const response = await client.send(command);UnfollowIdentityCommandInput for command's
inputshape.UnfollowIdentityCommandOutput for command's
responseshape.config for IdentityServiceClient's
configshape.