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);
gefragt vor einem Jahr243 Aufrufe
1 Antwort
0
Akzeptierte Antwort

Encode UserId

beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen