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
create_access_token_request = urlr.CreateAccessTokenRequest() # CreateAccessTokenRequest | Your credentials (optional)
37
+
create_access_token_request = urlr.CreateAccessTokenRequest() # CreateAccessTokenRequest | You can use this endpoint to get an access token to access the API. (optional)
38
38
39
39
try:
40
40
# Get an access token
@@ -52,7 +52,7 @@ with urlr.ApiClient(configuration) as api_client:
**create_access_token_request** | [**CreateAccessTokenRequest**](CreateAccessTokenRequest.md)| Your credentials | [optional]
55
+
**create_access_token_request** | [**CreateAccessTokenRequest**](CreateAccessTokenRequest.md)| You can use this endpoint to get an access token to access the API. | [optional]
refresh_access_token_request = urlr.RefreshAccessTokenRequest() # RefreshAccessTokenRequest | Your credentials (optional)
105
+
refresh_access_token_request = urlr.RefreshAccessTokenRequest() # RefreshAccessTokenRequest | You can use this endpoint to refresh your access token without credentials. (optional)
106
106
107
107
try:
108
108
# Refresh an access token
@@ -120,7 +120,7 @@ with urlr.ApiClient(configuration) as api_client:
**refresh_access_token_request** | [**RefreshAccessTokenRequest**](RefreshAccessTokenRequest.md)| Your credentials | [optional]
123
+
**refresh_access_token_request** | [**RefreshAccessTokenRequest**](RefreshAccessTokenRequest.md)| You can use this endpoint to refresh your access token without credentials. | [optional]
create_access_token_request: Annotated[Optional[CreateAccessTokenRequest], Field(description="You can use this endpoint to get an access token to access the API.")] =None,
49
49
_request_timeout: Union[
50
50
None,
51
51
Annotated[StrictFloat, Field(gt=0)],
@@ -62,7 +62,7 @@ def create_access_token(
62
62
"""Get an access token
63
63
64
64
65
-
:param create_access_token_request: Your credentials
65
+
:param create_access_token_request: You can use this endpoint to get an access token to access the API.
create_access_token_request: Annotated[Optional[CreateAccessTokenRequest], Field(description="You can use this endpoint to get an access token to access the API.")] =None,
create_access_token_request: Annotated[Optional[CreateAccessTokenRequest], Field(description="You can use this endpoint to get an access token to access the API.")] =None,
refresh_access_token_request: Annotated[Optional[RefreshAccessTokenRequest], Field(description="You can use this endpoint to refresh your access token without credentials.")] =None,
319
319
_request_timeout: Union[
320
320
None,
321
321
Annotated[StrictFloat, Field(gt=0)],
@@ -332,7 +332,7 @@ def refresh_access_token(
332
332
"""Refresh an access token
333
333
334
334
335
-
:param refresh_access_token_request: Your credentials
335
+
:param refresh_access_token_request: You can use this endpoint to refresh your access token without credentials.
refresh_access_token_request: Annotated[Optional[RefreshAccessTokenRequest], Field(description="You can use this endpoint to refresh your access token without credentials.")] =None,
refresh_access_token_request: Annotated[Optional[RefreshAccessTokenRequest], Field(description="You can use this endpoint to refresh your access token without credentials.")] =None,
0 commit comments