File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
staffhub/staffhub-ps/staffhub Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ Get-StaffHubTeamsForTenant [[-ContinuationToken] <String>] [[-Top] <Int32>]
20
20
```
21
21
22
22
## DESCRIPTION
23
- Get all the teams in the tenant of the logged in user
23
+ Get all the teams in the tenant of the logged in user.
24
+ ContinuationToken from the call is stored in $nextToken Variable.
25
+ So the next call can be made like Get-StaffHubTeamsForTenant -Top 10 -ContinuationToken $nextToken
24
26
25
27
## EXAMPLES
26
28
@@ -30,7 +32,10 @@ Get-StaffHubTeamsForTenant -Top 10
30
32
```
31
33
32
34
Get first 10 teams in the tenant by ascending creation time order.
33
- If not specified, then it defaults it to 1000.
35
+ If 'Top' parameter is not specified, then it defaults it to 1000.
36
+ This returns a continuation token stored in $nextToken variable which can be used by the following call.
37
+ Eg: Get-StaffHubTeamsForTenant -Top 10 -ContinuationToken $nextToken
38
+
34
39
35
40
### Example 2
36
41
```
You can’t perform that action at this time.
0 commit comments