Completes an avatar image upload. Must be called after the file upload process completes. Call rivet.api.group#PrepareGroupAvatarUpload first.
rivet.api.group#PrepareGroupAvatarUpload
Use a bare-bones client and the command you need to make an API call.
import { GroupServiceClient, CompleteGroupAvatarUploadCommand } from "@rivet-gg/group"; // ES Modules import // const { GroupServiceClient, CompleteGroupAvatarUploadCommand } = require("@rivet-gg/group"); // CommonJS import const client = new GroupServiceClient(config); const command = new CompleteGroupAvatarUploadCommand(input); const response = await client.send(command);
CompleteGroupAvatarUploadCommandInput for command's input shape.
input
CompleteGroupAvatarUploadCommandOutput for command's response shape.
response
config for GroupServiceClient's config shape.
config
Completes an avatar image upload. Must be called after the file upload process completes. Call
rivet.api.group#PrepareGroupAvatarUploadfirst.Use a bare-bones client and the command you need to make an API call.
import { GroupServiceClient, CompleteGroupAvatarUploadCommand } from "@rivet-gg/group"; // ES Modules import // const { GroupServiceClient, CompleteGroupAvatarUploadCommand } = require("@rivet-gg/group"); // CommonJS import const client = new GroupServiceClient(config); const command = new CompleteGroupAvatarUploadCommand(input); const response = await client.send(command);CompleteGroupAvatarUploadCommandInput for command's
inputshape.CompleteGroupAvatarUploadCommandOutput for command's
responseshape.config for GroupServiceClient's
configshape.