Helix Vs. Kraken users endpoint

In the kraken API the users endpoint included a created_at field containing the date that the user’s account was created. I can’t seem to find this in the helix api.

kraken/users:

{
    "_total": 1,
    "users": [
        {
            "display_name": "Dgc2002",
            "_id": "7028089",
            "name": "dgc2002",
            "type": "user",
            "bio": null,
            "created_at": "2009-06-29T03:04:42.437814Z",
            "updated_at": "2017-10-11T19:05:23.583747Z",
            "logo": null
        }
    ]
}  

helix/users:

{
    "data": [
        {
            "id": "7028089",
            "login": "dgc2002",
            "display_name": "Dgc2002",
            "type": "",
            "broadcaster_type": "",
            "description": "",
            "profile_image_url": "",
            "offline_image_url": "",
            "view_count": 58
        }
    ]
}

Is this information at a different end point or is it not going to be available moving forward?

Hey! Helix Dev here. Going to look into this. Thanks for the feedback!