Skip to content

Commit 7fc472e

Browse files
authored
Merge pull request #11985 from Chandranshu-Singh/patch-2
Create Get-CsSdgBulkSignInRequestStatus.md
2 parents afe8ad1 + 98d8edc commit 7fc472e

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
external help file: MicrosoftTeams-help.xml
3+
Module Name: MicrosoftTeams
4+
applicable: Microsoft Teams
5+
online version:
6+
title: Get-CsSdgBulkSignInRequestStatus
7+
schema: 2.0.0
8+
---
9+
10+
# Get-CsSdgBulkSignInRequestStatus
11+
12+
## SYNOPSIS
13+
Get the status of an active bulk sign in request.
14+
15+
## SYNTAX
16+
17+
```
18+
Get-CsSdgBulkSignInRequestStatus -Batchid <String> [<CommonParameters>]
19+
```
20+
21+
## DESCRIPTION
22+
Use this cmdlet to get granular device level details of a bulk sign in request. Status is shown for every username and hardware ID pair included in the device details CSV used as input to the bulk sign in request.
23+
24+
## EXAMPLES
25+
26+
### Example 1
27+
```powershell
28+
$newBatchResponse = New-CsSdgBulkSignInRequest  -DeviceDetailsFilePath .\Example.csv  -Region APAC
29+
$newBatchResponse.BatchId
30+
$getBatchStatusResponse = Get-CsSdgBulkSignInRequestStatus -Batchid $newBatchResponse.BatchId
31+
$getBatchStatusResponse | ft
32+
$getBatchStatusResponse.BatchItem
33+
```
34+
35+
This example shows how to read the batch status response into a new variable and print the status for every batch item.
36+
37+
## PARAMETERS
38+
39+
### -Batchid
40+
Batch ID is the response returned by the `New-CsSdgBulkSignInRequest` cmdlet. It is used as input for querying the status of the batch through `Get-CsSdgBulkSignInRequestStatus` cmdlet.
41+
42+
```yaml
43+
Type: String
44+
Parameter Sets: (All)
45+
Aliases:
46+
Required: True
47+
Position: Named
48+
Default value: None
49+
Accept pipeline input: False
50+
Accept wildcard characters: False
51+
```
52+
53+
### CommonParameters
54+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
55+
56+
## INPUTS
57+
58+
### None
59+
60+
## OUTPUTS
61+
62+
### Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestStatusResult
63+
64+
## NOTES
65+
66+
## RELATED LINKS

0 commit comments

Comments
 (0)