msgraph-sdk-python
msgraph-sdk-python copied to clipboard
### Is your feature request related to a problem? Please describe the problem. The MS Graph SDK for Python comprehensively covers all Graph APIs and provides full models for all...
### Describe the bug I have a query that's using this code to retrieve a folder by name: ``` onedrive = await client.me.drive.get() query_params = ItemsRequestBuilder.ItemsRequestBuilderGetQueryParameters( filter="name eq 'some_name'" )...
### Describe the bug Here is my code : ``` batch_requests = BatchRequestContent() for message_id in message_ids: query_params = MessagesRequestBuilder.MessagesRequestBuilderGetQueryParameters( select=[ 'id', 'conversationId', 'internetMessageId', 'subject', 'body', 'bodyPreview', 'from', 'toRecipients', 'ccRecipients',...
### Describe the bug I am trying to delete multiple app secrets in Azure. One key is deleted but it does not advance. I can add secrets just fine. I...
Update: - [ ] https://learn.microsoft.com/en-us/graph/sdks/paging?view=graph-rest-1.0&tabs=csharp - [ ] https://learn.microsoft.com/en-us/graph/sdks/batch-requests?view=graph-rest-1.0&tabs=csharp - [ ] https://learn.microsoft.com/en-us/graph/sdks/batch-requests?view=graph-rest-1.0&tabs=csharp
### Describe the bug According to the documentation pages: - https://learn.microsoft.com/en-us/graph/api/table-post-rows?view=graph-rest-1.0&tabs=python - https://learn.microsoft.com/en-us/graph/api/tablerowcollection-add?view=graph-rest-1.0&tabs=python there should be an option in the initialization of `WorkbookTableRow` and `AddPostRequestBody` to specify the `values` attribute....
### Describe the bug We define a delta on messages (https://github.com/microsoftgraph/msgraph-sdk-python/blob/9542fa0b95c58822968116896048a00fe911eda4/msgraph/generated/users/item/messages/messages_request_builder.py#L140) that can be used like `await client.users.by_user_id(some_id).messages.delta.get()`, however the API doesn't support this (yet) and thus simply returns `Unsupported...
### Describe the bug In the Graph Explorer API I can run the following get request: https://graph.microsoft.com/v1.0/me/memberOf?$search="displayName:{display_name}"&$select=displayName,id Headers: ConsistencyLevel: eventual, Prefer: legacySearch=false Below is my version in the Python SDK:...
### Describe the bug This is a dupe of https://github.com/microsoftgraph/msgraph-sdk-python/issues/365 which was closed, seemingly without any explanation. I'm following the example from the docs [here](https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/docs/drives_samples.md#3-list-all-the-items-in-a-drive-get-drivesiditems) and it gives the following...
### Describe the bug The issue is the same as [issue 912](https://github.com/microsoftgraph/msgraph-sdk-python/issues/912) but with the source format `csv`. ### Expected behavior The conversion should work as stated in the documentation...