Search Results for

    Show / Hide Table of Contents

    Invoke-PnPGraphMethod

    SYNOPSIS

    Invokes a REST request towards the Microsoft Graph API

    SYNTAX

    Out to console (Default)

    Invoke-PnPGraphMethod -Url <String>
                          [-AdditionalHeaders <System.Collections.Generic.IDictionary`2[System.String,System.String]>]
                          [[-Method] <HttpRequestMethod>] 
                          [-Content <Object>] 
                          [-ContentType <String>] 
                          [-ConsistencyLevelEventual] 
                          [-Raw]
                          [-All] 
                          [-Connection <PnPConnection>]
                          [-Verbose]
    

    Out to file

    Invoke-PnPGraphMethod -Url <String>
                          [-AdditionalHeaders <System.Collections.Generic.IDictionary`2[System.String,System.String]>]
                          [[-Method] <HttpRequestMethod>] 
                          [-Content <Object>] 
                          [-ContentType <String>] 
                          [-ConsistencyLevelEventual] 
                          [-Connection <PnPConnection>]
                          [-OutFile <String>]
                          [-Verbose]
    

    Out to stream

    Invoke-PnPGraphMethod -Url <String>
                          [-AdditionalHeaders <System.Collections.Generic.IDictionary`2[System.String,System.String]>]
                          [[-Method] <HttpRequestMethod>] 
                          [-Content <Object>] 
                          [-ContentType <String>] 
                          [-ConsistencyLevelEventual] 
                          [-Connection <PnPConnection>]
                          [-OutStream]
                          [-Verbose]
    

    DESCRIPTION

    Invokes a REST request towards the Microsoft Graph API. It will take care of potential throttling retries that are needed to retrieve the data.

    EXAMPLES

    Example 1

    Invoke-PnPGraphMethod -Url "groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName"
    Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'
    

    Execute a GET request to get groups by filter and select.

    Example 2

    Invoke-PnPGraphMethod -Url "groups/{id}" -Method Delete
    

    Delete the group with the specified id.

    Example 3

    Invoke-PnPGraphMethod -Url "groups/{id}" -Method Patch -Content @{ displayName = "NewName" }
    

    Set the new displayName of the group with a Patch request.

    Example 4

    Invoke-PnPGraphMethod -Url "v1.0/users?$filter=accountEnabled ne true&$count=true" -Method Get -ConsistencyLevelEventual
    

    Get users with advanced query capabilities. Use of -ConsistencyLevelEventual.

    Example 5

    Invoke-PnPGraphMethod "https://graph.microsoft.com/v1.0/users"
    

    Performs a GET request to retrieve users from the Microsoft Graph API using the full URL.

    Example 6

    Invoke-PnPGraphMethod "https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value" -OutFile c:\temp\photo.jpg
    

    Downloads the user profile photo of the specified user to the specified file.

    Example 7

    Invoke-PnPGraphMethod "https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value" -OutStream | Add-PnPFile -FileName user.jpg -Folder "Shared Documents"
    

    Takes the user profile photo of the specified user and uploads it to the specified library in SharePoint Online.

    PARAMETERS

    -AdditionalHeaders

    Additional request headers

    Type: System.Collections.Generic.IDictionary`2[System.String,System.String]
    Parameter Sets: (All)
    Aliases:
    
    Required: False
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -All

    Retrieve all pages of results. This will loop through all @odata.nextLink. This flag will only be respected if the request is a GET request.

    Type: SwitchParameter
    Parameter Sets: Out to console
    Aliases:
    
    Required: False
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -Connection

    Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.

    Type: PnPConnection
    Parameter Sets: (All)
    Aliases:
    
    Required: False
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -ConsistencyLevelEventual

    Set the ConsistencyLevel header to eventual for advanced query capabilities on Azure AD directory objects

    Type: SwitchParameter
    Parameter Sets: (All)
    Aliases:
    
    Required: False
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -Content

    A string or object to send

    Type: Object
    Parameter Sets: (All)
    Aliases:
    
    Required: False
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -ContentType

    The content type of the object to send. Defaults to 'application/json'.

    Type: String
    Parameter Sets: (All)
    Aliases:
    
    Required: False
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -Method

    The HTTP method to execute. Defaults to GET.

    Type: HttpRequestMethod
    Parameter Sets: (All)
    Aliases:
    Accepted values: Default, Get, Head, Post, Put, Delete, Trace, Options, Merge, Patch
    
    Required: False
    Position: 0
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -OutFile

    The full path including filename to write the output to, i.e. c:\temp\myfile.txt. Existing files will be overwritten.

    Type: String
    Parameter Sets: Out to file
    Aliases:
    
    Required: True
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -OutStream

    Indicates that the result of the request should be returned as a memory stream.

    Type: String
    Parameter Sets: Out to stream
    Aliases:
    
    Required: True
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -Raw

    If specified the returned data will not be converted to an object but returned as a JSON string.

    Type: SwitchParameter
    Parameter Sets: Out to console
    Aliases:
    
    Required: False
    Position: Named
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    -Url

    The Graph endpoint to invoke.

    Type: String
    Parameter Sets: (All)
    Aliases:
    
    Required: True
    Position: 0
    Default value: None
    Accept pipeline input: True (ByValue)
    Accept wildcard characters: False
    

    RELATED LINKS

    Microsoft 365 Patterns and Practices

    Back to top Generated by DocFX spacer