Plans created by MS Graph API not showing up in web browser

Will Drotar 10 Reputation points
2024-12-20T20:18:42.2666667+00:00

When a plan is created using MS Graph API (v1.0), assigned users and owners cannot see it in the web browser under "My Plans" or "Shared".

However when opening the plan it by putting the plan id in the URL to access it, it will then begin appearing from then on. It's almost like it doesn't register as one of their plans until it's opened first, but they can't open it without manually changing the URL.

Is there something missing in the Request Body that is not making it appear in the list of a user's plans by default in the web browser?

Edit: Just to clarify- they are already members of the group/container that the plan is located in. Also added the user ids at /planner/plans/{plan_id}/details to the sharedWith key so they have access to the planner directly. Still not appearing.

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,651 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Yakun Huang-MSFT 8,355 Reputation points Microsoft Vendor
    2024-12-23T06:58:24.8533333+00:00

    Hello Will Drotar,

    Thank you for reaching out to Microsoft Support!

    As for your problem, we conducted a test, after creating a plan through the Graph API, the newly created plan cannot be seen in "My Plans" in the browser. After refreshing the page and expanding the list through show more, the newly created plan can be found below, and the test results are as follows:

    Screenshot 2024-12-23 065501

    User's image

    It is recommended that you refresh "My Plans" in your browser after creating the plan through the Graph API.

    Hope this helps.

    If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.


  2. Will Drotar 10 Reputation points
    2024-12-23T18:09:35.73+00:00

    I was able to fix this issue by re-creating the group/container with some changes:

    {

    "groupTypes": ["Unified"],

    "mailEnabled": true,

    "securityEnabled" false,

    "visibility": "Private"

    }

    I believe out of those making it a "Unified" (M365) or maybe making a mail-enabled group fixed it.

    0 comments No comments

  3. Yakun Huang-MSFT 8,355 Reputation points Microsoft Vendor
    2024-12-24T06:54:33.3566667+00:00

    Hello @Will Drotar ,

    I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to "Accept " the answer.

    Issue: Plans created by MS Graph API not showing up in web browser.

    Solution: Resolved by @Will Drotar , following the below steps.

    Re-create the group/container and make some changes to change the group type to Unified(M365) or create a mail-enabled group.

    {

    "groupTypes": ["Unified"],

    "mailEnabled": true,

    "securityEnabled" false,

    "visibility": "Private"

    }

    If you have any other questions or are still running into more issues, please let me know. Thank you again for your time and patience throughout this issue.

    Please remember to "Accept Answer" if any answer/reply helped, so that others in the community facing similar issues can easily find the solution.

    Thanks.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.