msgraph-sdk-dotnet icon indicating copy to clipboard operation
msgraph-sdk-dotnet copied to clipboard

Microsoft booking - Booking business does not show up in the portal when created via the sdk

Open Clapla opened this issue 3 months ago • 0 comments

Describe the bug When creating new booking businesses and publishing it. I can see that the booking business is created when getting it by id. But when I go in the microsoft booking portal using the master account that I assigned as a staff member in it I just don't see my booking business. What am I missing?

To Reproduce Here is the code I am using: `

    try
    {
        var x = await Client.Solutions.BookingBusinesses.PostAsync(bookingBusiness);
        await Client.Solutions.BookingBusinesses[x.Id]
           .Publish.PostAsync();


        var bookingStaffMember = new BookingStaffMember()
        {
            DisplayName = _configuration.Username,
            EmailAddress = _configuration.Username,
            Role = BookingStaffRole.Administrator
        };
        var bookingStaffMemberBase = await Client.Solutions.BookingBusinesses[x.Id]
           .StaffMembers.PostAsync(bookingStaffMember);
    }
    catch (Exception ex)
    {
        return Result.Invalid(ex.Message);
    }`

Expected behavior To see the booking business in my user microsoft booking portal

Screenshots image

Clapla avatar Mar 20 '24 20:03 Clapla