Create Folder in users home space with Rest API

I am able to create folder inside a Space in Dremio but not in my private user space.
For example I have a Space called Devops and I can create folder inside it using REST API:
{

    "entityType": "folder",

    "path": [

    "Devops",

    "testfolder"

}

But I want to create it in my users space, using the same rest api, only changing source folder.
{

    "entityType": "folder",

    "path": [

    "userspace@example.com",

    "testfolder"

}

But it gives me error Could not find entity with path [userspace@example.com, testfolder]]."}

Any idea?

Best Regards,
Sujata.

For home spaces you need to prefix them with @. So you would use @userspace@example.com as the root for your home space.