You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/ConnectedAccounts.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,12 +125,12 @@ This method provides a list of connections that have been enabled for use with C
125
125
126
126
This method requires the My Account `read:me:connected_accounts` scope to be enabled for your application and configured for MRRT.
127
127
128
-
This method supports paging via optional the use of `take` parameter. Without this parameters, a default page size of 10 is used. Subsequent pages can be retrieved by also passing the `from_token` parameter with the token returned in the `next` property of the response
128
+
This method supports paging via optional the use of `take` parameter. Without this parameters, a default page size of 10 is used. Subsequent pages can be retrieved by also passing the `from_param` parameter with the token returned in the `next` property of the response
@@ -143,13 +143,13 @@ This method requires the My Account `read:me:connected_accounts` scope to be ena
143
143
144
144
An optional `connection` parameter can be used to filter the connected accounts for a specific connection, otherwise all connected accounts will be returns
145
145
146
-
This method supports paging via optional the use of `take` parameter. Without this parameters, a default page size of 10 is used. Subsequent pages can be retrieved by also passing the `from_token` parameter with the token returned in the `next` property of the response
146
+
This method supports paging via optional the use of `take` parameter. Without this parameters, a default page size of 10 is used. Subsequent pages can be retrieved by also passing the `from_param` parameter with the token returned in the `next` property of the response
connection (Optional[str], optional): Filter results to a specific connection. Defaults to None.
1489
-
from_token (Optional[str], optional): A pagination token indicating where to start retrieving results, obtained from a prior request. Defaults to None.
1489
+
from_param (Optional[str], optional): A pagination token indicating where to start retrieving results, obtained from a prior request. Defaults to None.
1490
1490
take (Optional[int], optional): The maximum number of connections to retrieve. Defaults to None.
1491
1491
store_options: Optional options used to pass to the Transaction and State Store.
Retrieves a list of available connections that can be used connected accounts for the authenticated user.
1540
1540
1541
1541
Args:
1542
-
from_token (Optional[str], optional): A pagination token indicating where to start retrieving results, obtained from a prior request. Defaults to None.
1542
+
from_param (Optional[str], optional): A pagination token indicating where to start retrieving results, obtained from a prior request. Defaults to None.
1543
1543
take (Optional[int], optional): The maximum number of connections to retrieve. Defaults to None.
1544
1544
store_options: Optional options used to pass to the Transaction and State Store.
0 commit comments