axios({
    url : "/blog/${user_id}",
    baseURL : "<https://rocketteam.com>",
    method: "post",
    headers : {
        "Content-Type" : "string",
        "Age" : "int"
    },
    params : {},
    data : {
        blogTitle : "string",
        blogContent : "string",
        file : "Blob",
        comments : [
            {
                id : 'string',
                content : 'string'
            },
            {
                id : 'string',
                content : 'string'
            }
        ]
    }
});