diff --git a/official/docs/python/current/api-keys/retrieve.py b/official/docs/python/current/api-keys/retrieve.py index 028955ff..da8c7bfc 100644 --- a/official/docs/python/current/api-keys/retrieve.py +++ b/official/docs/python/current/api-keys/retrieve.py @@ -3,11 +3,11 @@ client = easypost.EasyPostClient("EASYPOST_API_KEY") # Retrieve all API keys including children -api_keys = client.api_key.all() +api_keys = client.api_keys.all() print(api_keys) # Retrieve API keys for a specific child user -child_api_keys = client.api_key.retrieve_api_keys_for_user("user_...") +child_api_keys = client.api_keys.retrieve_api_keys_for_user("user_...") print(child_api_keys) diff --git a/official/docs/python/v8/api-keys/retrieve.py b/official/docs/python/v8/api-keys/retrieve.py index 028955ff..da8c7bfc 100644 --- a/official/docs/python/v8/api-keys/retrieve.py +++ b/official/docs/python/v8/api-keys/retrieve.py @@ -3,11 +3,11 @@ client = easypost.EasyPostClient("EASYPOST_API_KEY") # Retrieve all API keys including children -api_keys = client.api_key.all() +api_keys = client.api_keys.all() print(api_keys) # Retrieve API keys for a specific child user -child_api_keys = client.api_key.retrieve_api_keys_for_user("user_...") +child_api_keys = client.api_keys.retrieve_api_keys_for_user("user_...") print(child_api_keys) diff --git a/official/docs/python/v9/api-keys/retrieve.py b/official/docs/python/v9/api-keys/retrieve.py index 028955ff..da8c7bfc 100644 --- a/official/docs/python/v9/api-keys/retrieve.py +++ b/official/docs/python/v9/api-keys/retrieve.py @@ -3,11 +3,11 @@ client = easypost.EasyPostClient("EASYPOST_API_KEY") # Retrieve all API keys including children -api_keys = client.api_key.all() +api_keys = client.api_keys.all() print(api_keys) # Retrieve API keys for a specific child user -child_api_keys = client.api_key.retrieve_api_keys_for_user("user_...") +child_api_keys = client.api_keys.retrieve_api_keys_for_user("user_...") print(child_api_keys)