Using python-aiplatform with googleapis.com

Python integration

✓ Official SDK
Install
pip install python-aiplatform
Quick start
import python-aiplatform

# Use an OAuth2 access token
client = python_aiplatform.Client(access_token="YOUR_ACCESS_TOKEN")
Returns information about the authenticated user.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://shoppingcontent.googleapis.com/content/v2/accounts/authinfo
Lists the orders in your Merchant Center account.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://shoppingcontent.googleapis.com/content/v2/{merchantId}/orders
Lists the sub-accounts in your Merchant Center account.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://shoppingcontent.googleapis.com/content/v2/{merchantId}/accounts
SDK on GitHub 📄 API Docs
SDK
python-aiplatform
Python
API
googleapis.com
googleapis.com:shoppingcontent
At a glance
Language Python
Endpoints86
Base URLhttps://shoppingcontent.googleapis.com/content/v2
✓ Official