Open MCKRUZ opened 3 years ago
Nothing?
Thank you for reporting this issue. This appears to be an issue or limitation with the service APIs. Unfortunately, as the Microsoft Graph SDK team, we do not have ownership of the APIs that are causing you issues. We invite you to create a question about the service API to Microsoft Q&A and tagged with one of the [microsoft-graph-*] tags, that way it will get routed to the appropriate team for them to triage:
https://aka.ms/msgraphsupport or directly https://aka.ms/askgraph
For now, we will close the issue on our side but feel free to open it in the relevant repository if you think the issue is specific to SDK. Please let us know if this helps!
Note: We will close this repository on April 19, 2024.
Describe the bug
So after creating a channel in MS Team, I am making a graph API call -> GET /teams/{id}/channels/{id}/filesFolder
Because, I want the drive Id, for creation of folders inside the channel. But this API is failing
{ "error": { "code": "NotFound", "message": "Folder location for this channel is not ready yet, please try again later.", "innerError": { "date": "2021-03-22T13:01:23", "request-id": "Not mentioning id here", "client-request-id": "Not mentioning id here" } } }
To Reproduce Steps to reproduce the behavior:
Expected behavior I expect to be able to in some way create a team and populate channels within that team automatically through the API or the SDK. Ideally this would be something I could do in the initial team creation and not have to do through a separate call, but I can't even do that.
Additional context I have also tried this using the C# sdk to the same effect. After doing some googling around some of the "solutions" to this problem are as follows:
1.) Wait 24 hours....seriously? 2.) Go into the Teams UI and click the files tab of the channel I want to create folders in....thus eliminating the whole purpose of trying to automate this.
AB#9039