UploadUserProfilePicture
ユーザープロファイル画像の登録・更新
Description
ユーザープロファイル画像を登録・更新します
Method
POST
Request URL Format
/api/v0/userinfo/profilepic
Content-Type : multipart/form-data
file : 添付ファイル
Request URL Sample
POST https://api.xxx.com/api/v0/userinfo/profilepic
Response Sample
{
"error": null
}
Error Response Sample
対応していない形式のファイルが指定された場合
{
"error": "file format is not supported: application/pdf"
}
// 以下のMIME タイプが使用可能です
"image/gif",
"image/png",
"image/jpeg",
"image/bmp",
"image/webp",
"image/apng",
"image/avif",
"image/svg+xml",
"image/tiff"
ファイルサイズが規定値(5MB)を超えた場合
{
"error": "reduce the file size to 5242880 bytes or less"
}