Skip to content

Commit f14c11b

Browse files
Create Get-CsSdgBulkSignInRequestStatus.md
1 parent 4da0ef2 commit f14c11b

File tree

1 file changed

+159
-0
lines changed

1 file changed

+159
-0
lines changed
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
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> [-Break] [-HttpPipelineAppend <SendAsyncStep[]>]
19+
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <Uri>] [-ProxyCredential <PSCredential>]
20+
[-ProxyUseDefaultCredentials] [<CommonParameters>]
21+
```
22+
23+
## DESCRIPTION
24+
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.
25+
26+
## EXAMPLES
27+
28+
### Example 1
29+
```powershell
30+
$newBatchResponse = New-CsSdgBulkSignInRequest  -DeviceDetailsFilePath .\Example.csv  -Region APAC
31+
$newBatchResponse.BatchId
32+
$getBatchStatusResponse = Get-CsSdgBulkSignInRequestStatus -Batchid $newBatchResponse.BatchId
33+
$getBatchStatusResponse | ft
34+
$getBatchStatusResponse.BatchItem
35+
```
36+
37+
This example shows how to read the batch status response into a new variable and print the status for every batch item.
38+
39+
## PARAMETERS
40+
41+
### -Batchid
42+
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.
43+
44+
```yaml
45+
Type: String
46+
Parameter Sets: (All)
47+
Aliases:
48+
49+
Required: True
50+
Position: Named
51+
Default value: None
52+
Accept pipeline input: False
53+
Accept wildcard characters: False
54+
```
55+
56+
### -Break
57+
{{ Fill Break Description }}
58+
59+
```yaml
60+
Type: SwitchParameter
61+
Parameter Sets: (All)
62+
Aliases:
63+
64+
Required: False
65+
Position: Named
66+
Default value: None
67+
Accept pipeline input: False
68+
Accept wildcard characters: False
69+
```
70+
71+
### -HttpPipelineAppend
72+
{{ Fill HttpPipelineAppend Description }}
73+
74+
```yaml
75+
Type: SendAsyncStep[]
76+
Parameter Sets: (All)
77+
Aliases:
78+
79+
Required: False
80+
Position: Named
81+
Default value: None
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
86+
### -HttpPipelinePrepend
87+
{{ Fill HttpPipelinePrepend Description }}
88+
89+
```yaml
90+
Type: SendAsyncStep[]
91+
Parameter Sets: (All)
92+
Aliases:
93+
94+
Required: False
95+
Position: Named
96+
Default value: None
97+
Accept pipeline input: False
98+
Accept wildcard characters: False
99+
```
100+
101+
### -Proxy
102+
{{ Fill Proxy Description }}
103+
104+
```yaml
105+
Type: Uri
106+
Parameter Sets: (All)
107+
Aliases:
108+
109+
Required: False
110+
Position: Named
111+
Default value: None
112+
Accept pipeline input: False
113+
Accept wildcard characters: False
114+
```
115+
116+
### -ProxyCredential
117+
{{ Fill ProxyCredential Description }}
118+
119+
```yaml
120+
Type: PSCredential
121+
Parameter Sets: (All)
122+
Aliases:
123+
124+
Required: False
125+
Position: Named
126+
Default value: None
127+
Accept pipeline input: False
128+
Accept wildcard characters: False
129+
```
130+
131+
### -ProxyUseDefaultCredentials
132+
{{ Fill ProxyUseDefaultCredentials Description }}
133+
134+
```yaml
135+
Type: SwitchParameter
136+
Parameter Sets: (All)
137+
Aliases:
138+
139+
Required: False
140+
Position: Named
141+
Default value: None
142+
Accept pipeline input: False
143+
Accept wildcard characters: False
144+
```
145+
146+
### CommonParameters
147+
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).
148+
149+
## INPUTS
150+
151+
### None
152+
153+
## OUTPUTS
154+
155+
### Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestStatusResult
156+
157+
## NOTES
158+
159+
## RELATED LINKS

0 commit comments

Comments
 (0)