Update user general data

Please use this ( https://vtubers.me/mobile_api/gen_settings) API to update profile details of logged in user


Post parameters

Field Value Remarks
session_id Access token ID E.g. de25cc16eb00960f076...
display_name User Display name E.g. vTubersDotMe
about User bio (Max 140 chars.) E.g. A place for vTubers, Creators, and their Fans to connect and stay up to date with each other.
gender User gender (M/F/O/T) E.g. M
email User email address E.g. [email protected]
username User new username E.g. vTubersDotDotMe
website User website URL E.g. https://vtubers.me/
country_id User country ID E.g. 1 (United States)
birthday User birth date Note: Must be a year after 1900 and 13 years less than the current year. E.g. 2000-03-20 (YYYY-MM-DD)

Success response

{
        "code": 200,
        "message": "Profile data updated successfully",
        "data":{
            "id": 7,
            "display_name": "vTubersDotMe",
            "username": "vTubersDotDotMe",
            "email": "[email protected]",
            "is_verified": false,
            "website": "",
            "about_you": "A place for vTubers, Creators, and their Fans to connect and stay up to date with each other.",
            "gender": "M",
            "country": "United States",
            "birthday": "2000-30-20",
            "post_count": 4061,
            "ip_address": "192.168.1.1",
            "following_count": 1,
            "follower_count": 1,
            "language": "english",
            "last_active": "1 second ago",
            "member_since": "November, 2022"
        }
    }
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }

    {
        "data": [],
        "message": "",
        "code": 400
    }