How to Get RootFolderId By UserId in DescribeUser Amazon Workdocs API?

0

I have UserId, and I need the root folder id for that particular user. What I have done is, used the DescribeUser API of AmazonWorkdocs And provided id in UserIds Query. This API is working fine in postman. But when I'm using the same for My project (NetCore) it returns {{"Message": "Invalid SigV4 credentials."}} The code is provided below.

var userRequest = new ESBMessage();
                    userRequest.LocalPath = String.Format("/api/v1/users");
                    userRequest.Http.Method = "GET";
                    //userRequest.Http.Query.Add("organizationId", OrganizationId);
                    userRequest.Http.Query.Add("userIds", userId);// UserId contains id of user
                    SetAuthenticationHeader(userRequest);
                    var driveList = _client.CallRestApi(userRequest, GetRequestURI(), true);
已提问 1 年前230 查看次数
1 回答
0
已接受的回答

Encode UserId

已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则