Skip to content

Latest commit

 

History

History
85 lines (56 loc) · 2.48 KB

File metadata and controls

85 lines (56 loc) · 2.48 KB

wordlift_client.GoogleMerchantsApi

All URIs are relative to https://api.wordlift.io

Method HTTP request Description
list_google_merchants GET /ext/google/shopping/merchants List

list_google_merchants

PageMerchantEntry list_google_merchants(google_access_token)

List

List the Google Merchants

Example

  • OAuth Authentication (OAuth2):
import wordlift_client
from wordlift_client.models.page_merchant_entry import PageMerchantEntry
from wordlift_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.wordlift.io
# See configuration.py for a list of all supported configuration parameters.
configuration = wordlift_client.Configuration(
    host = "https://api.wordlift.io"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

configuration.access_token = os.environ["ACCESS_TOKEN"]

# Enter a context with an instance of the API client
async with wordlift_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = wordlift_client.GoogleMerchantsApi(api_client)
    google_access_token = 'google_access_token_example' # str | 

    try:
        # List
        api_response = await api_instance.list_google_merchants(google_access_token)
        print("The response of GoogleMerchantsApi->list_google_merchants:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling GoogleMerchantsApi->list_google_merchants: %s\n" % e)

Parameters

Name Type Description Notes
google_access_token str

Return type

PageMerchantEntry

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Found -
401 Authentication Failure -

[Back to top] [Back to API list] [Back to Model list] [Back to README]