Hello all!
I'm not Storage Admin, but I've been requested to write some Web Page or something similar to show Storage Quota for each user.
In our company each user has his own Quota(~5000 user).
What I actually need is the correct HTTP REQUEST URL of REST API for specific user.
What I have already tried to use:
https://"netAppName"/api/storage/quota/reports?users.name="userName"&volume.name="volumeName"
The request above did bring this:
links": {
"self": {
"href": "/api/storage/quota/reports/"someGuid""
}
Based on the "someGuid" above I combined following HTTP REQUEST:
https://"netAppName"/api/storage/quota/reports/"someGuid"
This request did bring the "hard_limit", "soft_limit" and other user's information.
My question is: What does this "someGuid" mean? And how can I get Quota Information for specific user using one request and not multiple as in my example?
BR,
Pavel