Completes an avatar image upload. Must be called after the file upload process completes.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, CompleteIdentityAvatarUploadCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, CompleteIdentityAvatarUploadCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new CompleteIdentityAvatarUploadCommand(input); const response = await client.send(command);
CompleteIdentityAvatarUploadCommandInput for command's input shape.
input
CompleteIdentityAvatarUploadCommandOutput for command's response shape.
response
config for IdentityServiceClient's config shape.
config
Completes an avatar image upload. Must be called after the file upload process completes.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, CompleteIdentityAvatarUploadCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, CompleteIdentityAvatarUploadCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new CompleteIdentityAvatarUploadCommand(input); const response = await client.send(command);CompleteIdentityAvatarUploadCommandInput for command's
inputshape.CompleteIdentityAvatarUploadCommandOutput for command's
responseshape.config for IdentityServiceClient's
configshape.