microsoft-graph-devx-api icon indicating copy to clipboard operation
microsoft-graph-devx-api copied to clipboard

Services API for Graph Explorer

Results 114 microsoft-graph-devx-api issues
Sort by recently updated
recently updated
newest added

All API method documents should have at least one example, as stated in the [CDK](https://dev.azure.com/msazure/One/_wiki/wikis/Microsoft%20Graph%20Partners/344038/Reference-topic-templates). However, sometimes authors overlook this and don't add one. We should check at the PR...

type: feature
area: api-doctor

Context: https://github.com/microsoftgraph/microsoft-graph-docs-contrib/issues/41 Some example APIs that rely on checking the `Location` header: [authenticationMethod: resetPassword](https://learn.microsoft.com/en-us/graph/api/authenticationmethod-resetpassword?view=graph-rest-1.0&tabs=http) [Create schema](https://learn.microsoft.com/en-us/graph/api/externalconnectors-externalconnection-patch-schema?view=graph-rest-1.0&tabs=http) We show how to make the call and get the result back, but the...

area: snippets-generation

Context: https://github.com/microsoftgraph/microsoft-graph-docs-contrib/issues/38 Example 2 on page [Create group](https://learn.microsoft.com/en-us/graph/api/group-post-groups?view=graph-rest-1.0&tabs=go) uses `additionalData` to add an owner and 2 members to the new group. It shows the following invalid code: ```go additionalData :=...

area: snippets-generation

Context: https://github.com/microsoftgraph/microsoft-graph-docs-contrib/issues/8766 Snippet is on this page: https://learn.microsoft.com/en-us/graph/aad-advanced-queries?tabs=http Find the HTTP snippet that looks like: ```http GET https://graph.microsoft.com/beta/users?$filter=endsWith(userPrincipalName,'%23EXT%[email protected]') ``` The generated PowerShell snippet is missing the second parameter to the...

area: snippets-generation

Context: https://github.com/microsoftgraph/microsoft-graph-docs-contrib/issues/9107 Examples 2 & 3 from [Create group](https://learn.microsoft.com/en-us/graph/api/group-post-groups?view=graph-rest-1.0&tabs=python) have this: ```python additional_data = { "owners@odata_bind" : [ "https://graph.microsoft.com/v1.0/users/99e44b05-c10b-4e95-a523-e2732bbaba1e", ], "members@odata_bind" : [ "https://graph.microsoft.com/v1.0/users/6ea91a8d-e32e-41a1-b7bd-d2d185eed0e0", "https://graph.microsoft.com/v1.0/users/4562bcc8-c436-4f95-b7c0-4f8ce89dca5e", ], } ``` The correct...

area: snippets-generation

All Kiota-based languages are not able to generate the following code samples and I'm not sure the reason why: - https://learn.microsoft.com/en-us/graph/api/outlookuser-supportedtimezones?view=graph-rest-1.0&tabs=powershell#request-2 - https://learn.microsoft.com/en-us/graph/api/range-update?view=graph-rest-1.0&tabs=http - https://learn.microsoft.com/en-us/graph/api/user-sendmail?view=graph-rest-1.0&tabs=java#example-4-send-a-new-message-using-mime-format Transferring Issue here from raptor...

area: snippets-generation

Sourced from https://github.com/microsoftgraph/microsoft-graph-docs-contrib/issues/9117 For snippets that return collection responses, it would be helpful if the notes/comments linked to the pageIterator docs so that users may find the information more easily.

area: snippets-generation

Specification for snippets should align to the specification available at https://gist.github.com/sebastienlevert/ae40eb334c3d5a9d4cd3f4a06d2b09be and shared document. In summary, we should update snippets to - [ ] Have necessary import statements - [...

area: snippets-generation
area: php

Specification for snippets should align to the specification available at https://gist.github.com/sebastienlevert/ae40eb334c3d5a9d4cd3f4a06d2b09be and shared document. In summary, we should update snippets to - [ ] Have necessary import statements - [...

area: snippets-generation
area: javascript

Specification for snippets should align to the specification available at https://gist.github.com/sebastienlevert/ae40eb334c3d5a9d4cd3f4a06d2b09be and shared document. In summary, we should update snippets to - [ ] Have necessary import statements - [...

area: snippets-generation
area: powershell