Validate contents of identity profile. Use to provide immediate feedback on profile changes before committing them.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, ValidateIdentityProfileCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, ValidateIdentityProfileCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new ValidateIdentityProfileCommand(input); const response = await client.send(command);
ValidateIdentityProfileCommandInput for command's input shape.
input
ValidateIdentityProfileCommandOutput for command's response shape.
response
config for IdentityServiceClient's config shape.
config
Validate contents of identity profile. Use to provide immediate feedback on profile changes before committing them.
Use a bare-bones client and the command you need to make an API call.
import { IdentityServiceClient, ValidateIdentityProfileCommand } from "@rivet-gg/identity"; // ES Modules import // const { IdentityServiceClient, ValidateIdentityProfileCommand } = require("@rivet-gg/identity"); // CommonJS import const client = new IdentityServiceClient(config); const command = new ValidateIdentityProfileCommand(input); const response = await client.send(command);ValidateIdentityProfileCommandInput for command's
inputshape.ValidateIdentityProfileCommandOutput for command's
responseshape.config for IdentityServiceClient's
configshape.