Skip to content

Commit 7d76c20

Browse files
authored
Merge pull request MicrosoftDocs#115 from jananisomaskandan/patch-1
Update Get-StaffHubTeamsForTenant.md
2 parents 856ac14 + 1f6b63f commit 7d76c20

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

staffhub/staffhub-ps/staffhub/Get-StaffHubTeamsForTenant.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ Get-StaffHubTeamsForTenant [[-ContinuationToken] <String>] [[-Top] <Int32>]
2020
```
2121

2222
## 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
2426

2527
## EXAMPLES
2628

@@ -30,7 +32,10 @@ Get-StaffHubTeamsForTenant -Top 10
3032
```
3133

3234
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+
3439

3540
### Example 2
3641
```

0 commit comments

Comments
 (0)