수정
사용자 자신의 정보를 수정할 수 있습니다.
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
}