Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
87 lines (57 loc) · 1.57 KB

File metadata and controls

87 lines (57 loc) · 1.57 KB

Get-PCSR

Returns a list of service requests or a specified service request.

SYNTAX

Get-PCSR [-TenantId <String>] [-SaToken <String>] [<CommonParameters>]

Get-PCSR [-ServiceRequestId <String>] [-SaToken <String>] [<CommonParameters>]

DESCRIPTION

The Get-PCSR cmdlet retrieves a list of service requests or a specified service request.

PARAMETERS

-TenantId <String>

Specifies the tenant used for scoping this cmdlet.

Required?                    false
Position?                    named
Default value
Accept pipeline input?       false
Accept wildcard characters?  false

-ServiceRequestId <String>

Specifies a service request id.

Required?                    false
Position?                    named
Default value
Accept pipeline input?       false
Accept wildcard characters?  false

-SaToken <String>

Specifies an authentication token with your Partner Center credentials.

Required?                    false
Position?                    named
Default value                $GlobalToken
Accept pipeline input?       false
Accept wildcard characters?  false

INPUTS

OUTPUTS

NOTES

The -All parameter has been removed in this version.

EXAMPLES

EXAMPLE 1

Get all service requests.

PS C:\>Get-PCSR

EXAMPLE 2

Get a specific service request

    Get-PCSR -ServiceRequestId '<service request id>'

EXAMPLE 3

Get all customer service requests for the specified tenant id.

    Get-PCSR -TenantId 'e974093c-2a52-4ebd-994e-b3e7e0f90cf2'