본문으로 건너뛰기

수정

사용자 자신의 정보를 수정할 수 있습니다.

Parameter

속성설명유형
name사용자 이름. 1~80자로 제한됩니다.String
profile_url프로필 URL. 최대 2,048자로 제한됩니다.String
try {
const params: UserUpdateParams {
name?: string;
profile_url?: string;
}
const user = await gitpleLiveChatClient.user.updateUser(params);
} catch (error) {
// handle error
}