## This client library is not design to be use directly, instead use ours [Pinterest Python SDK](https://github.com/pinterest/pinterest-python-sdk)
# Pinterest_Generated_Client
Pinterest's REST API
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 5.14.0
- Package version: 0.1.9
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://developers.pinterest.com/](https://developers.pinterest.com/)
## Requirements.
Python >=3.6
## Installation & Usage
### pip install
If the python package is hosted on a repository, you can install directly using:
#### Using HTTPS
```sh
pip install git+https://github.com/pinterest/pinterest-python-generated-api-client.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/pinterest/pinterest-python-generated-api-client.git`)
#### Using SSH
```sh
pip install git+ssh://github.com/pinterest/pinterest-python-generated-api-client.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/pinterest/pinterest-python-generated-api-client.git`)
Then import the package:
```python
import openapi_generated.pinterest_client
```
### Setuptools
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)
Then import the package:
```python
import openapi_generated.pinterest_client
```
## Getting Started
Please follow the [installation procedure](#installation--usage) and then run the following:
```python
import time
import openapi_generated.pinterest_client
from pprint import pprint
from openapi_generated.pinterest_client.api import ad_accounts_api
from openapi_generated.pinterest_client.model.ad_account import AdAccount
from openapi_generated.pinterest_client.model.ad_account_analytics_response import AdAccountAnalyticsResponse
from openapi_generated.pinterest_client.model.ad_account_create_request import AdAccountCreateRequest
from openapi_generated.pinterest_client.model.ads_analytics_create_async_request import AdsAnalyticsCreateAsyncRequest
from openapi_generated.pinterest_client.model.ads_analytics_create_async_response import AdsAnalyticsCreateAsyncResponse
from openapi_generated.pinterest_client.model.ads_analytics_get_async_response import AdsAnalyticsGetAsyncResponse
from openapi_generated.pinterest_client.model.ads_analytics_targeting_type import AdsAnalyticsTargetingType
from openapi_generated.pinterest_client.model.conversion_report_attribution_type import ConversionReportAttributionType
from openapi_generated.pinterest_client.model.create_mmm_report_request import CreateMMMReportRequest
from openapi_generated.pinterest_client.model.create_mmm_report_response import CreateMMMReportResponse
from openapi_generated.pinterest_client.model.error import Error
from openapi_generated.pinterest_client.model.get_mmm_report_response import GetMMMReportResponse
from openapi_generated.pinterest_client.model.granularity import Granularity
from openapi_generated.pinterest_client.model.metrics_response import MetricsResponse
from openapi_generated.pinterest_client.model.paginated import Paginated
from openapi_generated.pinterest_client.model.template_response import TemplateResponse
# Defining the host is optional and defaults to https://api.pinterest.com/v5
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_generated.pinterest_client.Configuration(
host = "https://api.pinterest.com/v5"
)
# 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.
# Configure OAuth2 access token for authorization: pinterest_oauth2
configuration = openapi_generated.pinterest_client.Configuration(
host = "https://api.pinterest.com/v5"
)
configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Enter a context with an instance of the API client
with openapi_generated.pinterest_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ad_accounts_api.AdAccountsApi(api_client)
ad_account_id = "4" # str | Unique identifier of an ad account.
start_date = dateutil_parser('1970-01-01').date() # date | Metric report start date (UTC). Format: YYYY-MM-DD. Cannot be more than 90 days back from today.
end_date = dateutil_parser('1970-01-01').date() # date | Metric report end date (UTC). Format: YYYY-MM-DD. Cannot be more than 90 days past start_date.
columns = [
"TOTAL_CONVERSIONS",
] # [str] | Columns to retrieve, encoded as a comma-separated string. **NOTE**: Any metrics defined as MICRO_DOLLARS returns a value based on the advertiser profile's currency field. For USD,($1/1,000,000, or $0.000001 - one one-ten-thousandth of a cent). it's microdollars. Otherwise, it's in microunits of the advertiser's currency.<br/>For example, if the advertiser's currency is GBP (British pound sterling), all MICRO_DOLLARS fields will be in GBP microunits (1/1,000,000 British pound).<br/>If a column has no value, it may not be returned
granularity = Granularity("DAY") # Granularity | TOTAL - metrics are aggregated over the specified date range.<br> DAY - metrics are broken down daily.<br> HOUR - metrics are broken down hourly.<br>WEEKLY - metrics are broken down weekly.<br>MONTHLY - metrics are broken down monthly
click_window_days = 1 # int | Number of days to use as the conversion attribution window for a pin click action. Applies to Pinterest Tag conversion metrics. Prior conversion tags use their defined attribution windows. If not specified, defaults to `30` days. (optional) (default to 30)
engagement_window_days = 30 # int | Number of days to use as the conversion attribution window for an engagement action. Engagements include saves, closeups, link clicks, and carousel card swipes. Applies to Pinterest Tag conversion metrics. Prior conversion tags use their defined attribution windows. If not specified, defaults to `30` days. (optional) (default to 30)
view_window_days = 1 # int | Number of days to use as the conversion attribution window for a view action. Applies to Pinterest Tag conversion metrics. Prior conversion tags use their defined attribution windows. If not specified, defaults to `1` day. (optional) (default to 1)
conversion_report_time = "TIME_OF_AD_ACTION" # str | The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event. (optional) (default to "TIME_OF_AD_ACTION")
try:
# Get ad account analytics
api_response = api_instance.ad_account_analytics(ad_account_id, start_date, end_date, columns, granularity, click_window_days=click_window_days, engagement_window_days=engagement_window_days, view_window_days=view_window_days, conversion_report_time=conversion_report_time)
pprint(api_response)
except openapi_generated.pinterest_client.ApiException as e:
print("Exception when calling AdAccountsApi->ad_account_analytics: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to *https://api.pinterest.com/v5*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AdAccountsApi* | [**ad_account_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_account_analytics) | **GET** /ad_accounts/{ad_account_id}/analytics | Get ad account analytics
*AdAccountsApi* | [**ad_account_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_account_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/targeting_analytics | Get targeting analytics for an ad account
*AdAccountsApi* | [**ad_accounts_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_accounts_create) | **POST** /ad_accounts | Create ad account
*AdAccountsApi* | [**ad_accounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_accounts_get) | **GET** /ad_accounts/{ad_account_id} | Get ad account
*AdAccountsApi* | [**ad_accounts_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_accounts_list) | **GET** /ad_accounts | List ad accounts
*AdAccountsApi* | [**analytics_create_mmm_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_create_mmm_report) | **POST** /ad_accounts/{ad_account_id}/mmm_reports | Create a request for a Marketing Mix Modeling (MMM) report
*AdAccountsApi* | [**analytics_create_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_create_report) | **POST** /ad_accounts/{ad_account_id}/reports | Create async request for an account analytics report
*AdAccountsApi* | [**analytics_create_template_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_create_template_report) | **POST** /ad_accounts/{ad_account_id}/templates/{template_id}/reports | Create async request for an analytics report using a template
*AdAccountsApi* | [**analytics_get_mmm_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_get_mmm_report) | **GET** /ad_accounts/{ad_account_id}/mmm_reports | Get advertiser Marketing Mix Modeling (MMM) report.
*AdAccountsApi* | [**analytics_get_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_get_report) | **GET** /ad_accounts/{ad_account_id}/reports | Get the account analytics report created by the async call
*AdAccountsApi* | [**sandbox_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#sandbox_delete) | **DELETE** /ad_accounts/{ad_account_id}/sandbox | Delete ads data for ad account in API Sandbox
*AdAccountsApi* | [**templates_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#templates_list) | **GET** /ad_accounts/{ad_account_id}/templates | List templates
*AdGroupsApi* | [**ad_groups_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_analytics) | **GET** /ad_accounts/{ad_account_id}/ad_groups/analytics | Get ad group analytics
*AdGroupsApi* | [**ad_groups_audience_sizing**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_audience_sizing) | **POST** /ad_accounts/{ad_account_id}/ad_groups/audience_sizing | Get audience sizing
*AdGroupsApi* | [**ad_groups_bid_floor_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_bid_floor_get) | **POST** /ad_accounts/{ad_account_id}/bid_floor | Get bid floors
*AdGroupsApi* | [**ad_groups_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_create) | **POST** /ad_accounts/{ad_account_id}/ad_groups | Create ad groups
*AdGroupsApi* | [**ad_groups_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_get) | **GET** /ad_accounts/{ad_account_id}/ad_groups/{ad_group_id} | Get ad group
*AdGroupsApi* | [**ad_groups_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_list) | **GET** /ad_accounts/{ad_account_id}/ad_groups | List ad groups
*AdGroupsApi* | [**ad_groups_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/ad_groups/targeting_analytics | Get targeting analytics for ad groups
*AdGroupsApi* | [**ad_groups_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_update) | **PATCH** /ad_accounts/{ad_account_id}/ad_groups | Update ad groups
*AdsApi* | [**ad_previews_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ad_previews_create) | **POST** /ad_accounts/{ad_account_id}/ad_previews | Create ad preview with pin or image
*AdsApi* | [**ad_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ad_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/ads/targeting_analytics | Get targeting analytics for ads
*AdsApi* | [**ads_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_analytics) | **GET** /ad_accounts/{ad_account_id}/ads/analytics | Get ad analytics
*AdsApi* | [**ads_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_create) | **POST** /ad_accounts/{ad_account_id}/ads | Create ads
*AdsApi* | [**ads_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_get) | **GET** /ad_accounts/{ad_account_id}/ads/{ad_id} | Get ad
*AdsApi* | [**ads_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_list) | **GET** /ad_accounts/{ad_account_id}/ads | List ads
*AdsApi* | [**ads_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_update) | **PATCH** /ad_accounts/{ad_account_id}/ads | Update ads
*AdvancedAuctionApi* | [**advanced_auction_items_get_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionApi.md#advanced_auction_items_get_post) | **POST** /advanced_auction/items/get | Get item bid options (POST)
*AdvancedAuctionApi* | [**advanced_auction_items_submit_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionApi.md#advanced_auction_items_submit_post) | **POST** /advanced_auction/items/submit | Operate on item level bid options
*AudienceInsightsApi* | [**audience_insights_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightsApi.md#audience_insights_get) | **GET** /ad_accounts/{ad_account_id}/audience_insights | Get audience insights
*AudienceInsightsApi* | [**audience_insights_scope_and_type_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightsApi.md#audience_insights_scope_and_type_get) | **GET** /ad_accounts/{ad_account_id}/insights/audiences | Get audience insights scope and type
*AudienceSharingApi* | [**ad_accounts_audiences_shared_accounts_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#ad_accounts_audiences_shared_accounts_list) | **GET** /ad_accounts/{ad_account_id}/audiences/shared/accounts | List accounts with access to an audience owned by an ad account
*AudienceSharingApi* | [**business_account_audiences_shared_accounts_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#business_account_audiences_shared_accounts_list) | **GET** /businesses/{business_id}/audiences/shared/accounts | List accounts with access to an audience owned by a business
*AudienceSharingApi* | [**shared_audiences_for_business_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#shared_audiences_for_business_list) | **GET** /businesses/{business_id}/audiences | List received audiences for a business
*AudienceSharingApi* | [**update_ad_account_to_ad_account_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_ad_account_to_ad_account_shared_audience) | **PATCH** /ad_accounts/{ad_account_id}/audiences/ad_accounts/shared | Update audience sharing between ad accounts
*AudienceSharingApi* | [**update_ad_account_to_business_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_ad_account_to_business_shared_audience) | **PATCH** /ad_accounts/{ad_account_id}/audiences/businesses/shared | Update audience sharing from an ad account to businesses
*AudienceSharingApi* | [**update_business_to_ad_account_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_business_to_ad_account_shared_audience) | **PATCH** /businesses/{business_id}/audiences/ad_accounts/shared | Update audience sharing from a business to ad accounts
*AudienceSharingApi* | [**update_business_to_business_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_business_to_business_shared_audience) | **PATCH** /businesses/{business_id}/audiences/businesses/shared | Update audience sharing between businesses
*AudiencesApi* | [**audiences_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_create) | **POST** /ad_accounts/{ad_account_id}/audiences | Create audience
*AudiencesApi* | [**audiences_create_custom**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_create_custom) | **POST** /ad_accounts/{ad_account_id}/audiences/custom | Create custom audience
*AudiencesApi* | [**audiences_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_get) | **GET** /ad_accounts/{ad_account_id}/audiences/{audience_id} | Get audience
*AudiencesApi* | [**audiences_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_list) | **GET** /ad_accounts/{ad_account_id}/audiences | List audiences
*AudiencesApi* | [**audiences_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_update) | **PATCH** /ad_accounts/{ad_account_id}/audiences/{audience_id} | Update audience
*BillingApi* | [**ads_credit_redeem**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ads_credit_redeem) | **POST** /ad_accounts/{ad_account_id}/ads_credit/redeem | Redeem ad credits
*BillingApi* | [**ads_credits_discounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ads_credits_discounts_get) | **GET** /ad_accounts/{ad_account_id}/ads_credit/discounts | Get ads credit discounts
*BillingApi* | [**billing_profiles_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#billing_profiles_get) | **GET** /ad_accounts/{ad_account_id}/billing_profiles | Get billing profiles
*BillingApi* | [**ssio_accounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_accounts_get) | **GET** /ad_accounts/{ad_account_id}/ssio/accounts | Get Salesforce account details including bill-to information.
*BillingApi* | [**ssio_insertion_order_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_order_create) | **POST** /ad_accounts/{ad_account_id}/ssio/insertion_orders | Create insertion order through SSIO.
*BillingApi* | [**ssio_insertion_order_edit**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_order_edit) | **PATCH** /ad_accounts/{ad_account_id}/ssio/insertion_orders | Edit insertion order through SSIO.
*BillingApi* | [**ssio_insertion_orders_status_get_by_ad_account**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_orders_status_get_by_ad_account) | **GET** /ad_accounts/{ad_account_id}/ssio/insertion_orders/status | Get insertion order status by ad account id.
*BillingApi* | [**ssio_insertion_orders_status_get_by_pin_order_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_orders_status_get_by_pin_order_id) | **GET** /ad_accounts/{ad_account_id}/ssio/insertion_orders/{pin_order_id}/status | Get insertion order status by pin order id.
*BillingApi* | [**ssio_order_lines_get_by_ad_account**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_order_lines_get_by_ad_account) | **GET** /ad_accounts/{ad_account_id}/ssio/order_lines | Get Salesforce order lines by ad account id.
*BoardsApi* | [**board_sections_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_create) | **POST** /boards/{board_id}/sections | Create board section
*BoardsApi* | [**board_sections_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_delete) | **DELETE** /boards/{board_id}/sections/{section_id} | Delete board section
*BoardsApi* | [**board_sections_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_list) | **GET** /boards/{board_id}/sections | List board sections
*BoardsApi* | [**board_sections_list_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_list_pins) | **GET** /boards/{board_id}/sections/{section_id}/pins | List Pins on board section
*BoardsApi* | [**board_sections_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_update) | **PATCH** /boards/{board_id}/sections/{section_id} | Update board section
*BoardsApi* | [**boards_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_create) | **POST** /boards | Create board
*BoardsApi* | [**boards_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_delete) | **DELETE** /boards/{board_id} | Delete board
*BoardsApi* | [**boards_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_get) | **GET** /boards/{board_id} | Get board
*BoardsApi* | [**boards_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_list) | **GET** /boards | List boards
*BoardsApi* | [**boards_list_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_list_pins) | **GET** /boards/{board_id}/pins | List Pins on board
*BoardsApi* | [**boards_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_update) | **PATCH** /boards/{board_id} | Update board
*BulkApi* | [**bulk_download_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkApi.md#bulk_download_create) | **POST** /ad_accounts/{ad_account_id}/bulk/download | Get advertiser entities in bulk
*BulkApi* | [**bulk_request_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkApi.md#bulk_request_get) | **GET** /ad_accounts/{ad_account_id}/bulk/{bulk_request_id} | Download advertiser entities in bulk
*BulkApi* | [**bulk_upsert_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkApi.md#bulk_upsert_create) | **POST** /ad_accounts/{ad_account_id}/bulk/upsert | Create/update ad entities in bulk
*BusinessAccessAssetsApi* | [**asset_group_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#asset_group_create) | **POST** /businesses/{business_id}/asset_groups | Create a new asset group.
*BusinessAccessAssetsApi* | [**asset_group_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#asset_group_delete) | **DELETE** /businesses/{business_id}/asset_groups | Delete asset groups.
*BusinessAccessAssetsApi* | [**asset_group_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#asset_group_update) | **PATCH** /businesses/{business_id}/asset_groups | Update asset groups.
*BusinessAccessAssetsApi* | [**business_asset_members_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_asset_members_get) | **GET** /businesses/{business_id}/assets/{asset_id}/members | Get members with access to asset
*BusinessAccessAssetsApi* | [**business_asset_partners_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_asset_partners_get) | **GET** /businesses/{business_id}/assets/{asset_id}/partners | Get partners with access to asset
*BusinessAccessAssetsApi* | [**business_assets_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_assets_get) | **GET** /businesses/{business_id}/assets | List business assets
*BusinessAccessAssetsApi* | [**business_member_assets_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_member_assets_get) | **GET** /businesses/{business_id}/members/{member_id}/assets | Get assets assigned to a member
*BusinessAccessAssetsApi* | [**business_members_asset_access_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_members_asset_access_delete) | **DELETE** /businesses/{business_id}/members/assets/access | Delete member access to asset
*BusinessAccessAssetsApi* | [**business_members_asset_access_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_members_asset_access_update) | **PATCH** /businesses/{business_id}/members/assets/access | Assign/Update member asset permissions
*BusinessAccessAssetsApi* | [**business_partner_asset_access_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_partner_asset_access_get) | **GET** /businesses/{business_id}/partners/{partner_id}/assets | Get assets assigned to a partner or assets assigned by a partner
*BusinessAccessAssetsApi* | [**delete_partner_asset_access_handler_impl**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#delete_partner_asset_access_handler_impl) | **DELETE** /businesses/{business_id}/partners/assets | Delete partner access to asset
*BusinessAccessAssetsApi* | [**update_partner_asset_access_handler_impl**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#update_partner_asset_access_handler_impl) | **PATCH** /businesses/{business_id}/partners/assets | Assign/Update partner asset permissions
*BusinessAccessInviteApi* | [**asset_access_requests_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#asset_access_requests_create) | **POST** /businesses/{business_id}/requests/assets/access | Create a request to access an existing partner's assets.
*BusinessAccessInviteApi* | [**cancel_invites_or_requests**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#cancel_invites_or_requests) | **DELETE** /businesses/{business_id}/invites | Cancel invites/requests
*BusinessAccessInviteApi* | [**create_asset_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#create_asset_invites) | **POST** /businesses/{business_id}/invites/assets/access | Update invite/request with an asset permission
*BusinessAccessInviteApi* | [**create_membership_or_partnership_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#create_membership_or_partnership_invites) | **POST** /businesses/{business_id}/invites | Create invites or requests
*BusinessAccessInviteApi* | [**get_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#get_invites) | **GET** /businesses/{business_id}/invites | Get invites/requests
*BusinessAccessInviteApi* | [**respond_business_access_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#respond_business_access_invites) | **PATCH** /businesses/invites | Accept or decline an invite/request
*BusinessAccessRelationshipsApi* | [**delete_business_membership**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#delete_business_membership) | **DELETE** /businesses/{business_id}/members | Terminate business memberships
*BusinessAccessRelationshipsApi* | [**delete_business_partners**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#delete_business_partners) | **DELETE** /businesses/{business_id}/partners | Terminate business partnerships
*BusinessAccessRelationshipsApi* | [**get_business_employers**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#get_business_employers) | **GET** /businesses/employers | List business employers for user
*BusinessAccessRelationshipsApi* | [**get_business_members**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#get_business_members) | **GET** /businesses/{business_id}/members | Get business members
*BusinessAccessRelationshipsApi* | [**get_business_partners**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#get_business_partners) | **GET** /businesses/{business_id}/partners | Get business partners
*BusinessAccessRelationshipsApi* | [**update_business_memberships**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#update_business_memberships) | **PATCH** /businesses/{business_id}/members | Update member's business role
*CampaignsApi* | [**campaign_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaign_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/campaigns/targeting_analytics | Get targeting analytics for campaigns
*CampaignsApi* | [**campaigns_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_analytics) | **GET** /ad_accounts/{ad_account_id}/campaigns/analytics | Get campaign analytics
*CampaignsApi* | [**campaigns_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_create) | **POST** /ad_accounts/{ad_account_id}/campaigns | Create campaigns
*CampaignsApi* | [**campaigns_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_get) | **GET** /ad_accounts/{ad_account_id}/campaigns/{campaign_id} | Get campaign
*CampaignsApi* | [**campaigns_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_list) | **GET** /ad_accounts/{ad_account_id}/campaigns | List campaigns
*CampaignsApi* | [**campaigns_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_update) | **PATCH** /ad_accounts/{ad_account_id}/campaigns | Update campaigns
*CatalogsApi* | [**catalogs_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_create) | **POST** /catalogs | Create catalog
*CatalogsApi* | [**catalogs_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_list) | **GET** /catalogs | List catalogs
*CatalogsApi* | [**catalogs_product_group_pins_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_group_pins_list) | **GET** /catalogs/product_groups/{product_group_id}/products | List products by product group
*CatalogsApi* | [**catalogs_product_groups_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_create) | **POST** /catalogs/product_groups | Create product group
*CatalogsApi* | [**catalogs_product_groups_create_many**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_create_many) | **POST** /catalogs/product_groups/multiple | Create product groups
*CatalogsApi* | [**catalogs_product_groups_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_delete) | **DELETE** /catalogs/product_groups/{product_group_id} | Delete product group
*CatalogsApi* | [**catalogs_product_groups_delete_many**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_delete_many) | **DELETE** /catalogs/product_groups/multiple | Delete product groups
*CatalogsApi* | [**catalogs_product_groups_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_get) | **GET** /catalogs/product_groups/{product_group_id} | Get product group
*CatalogsApi* | [**catalogs_product_groups_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_list) | **GET** /catalogs/product_groups | List product groups
*CatalogsApi* | [**catalogs_product_groups_product_counts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_product_counts_get) | **GET** /catalogs/product_groups/{product_group_id}/product_counts | Get product counts
*CatalogsApi* | [**catalogs_product_groups_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_update) | **PATCH** /catalogs/product_groups/{product_group_id} | Update single product group
*CatalogsApi* | [**feed_processing_results_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feed_processing_results_list) | **GET** /catalogs/feeds/{feed_id}/processing_results | List feed processing results
*CatalogsApi* | [**feeds_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_create) | **POST** /catalogs/feeds | Create feed
*CatalogsApi* | [**feeds_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_delete) | **DELETE** /catalogs/feeds/{feed_id} | Delete feed
*CatalogsApi* | [**feeds_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_get) | **GET** /catalogs/feeds/{feed_id} | Get feed
*CatalogsApi* | [**feeds_ingest**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_ingest) | **POST** /catalogs/feeds/{feed_id}/ingest | Ingest feed items
*CatalogsApi* | [**feeds_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_list) | **GET** /catalogs/feeds | List feeds
*CatalogsApi* | [**feeds_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_update) | **PATCH** /catalogs/feeds/{feed_id} | Update feed
*CatalogsApi* | [**items_batch_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_batch_get) | **GET** /catalogs/items/batch/{batch_id} | Get item batch status
*CatalogsApi* | [**items_batch_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_batch_post) | **POST** /catalogs/items/batch | Operate on item batch
*CatalogsApi* | [**items_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_get) | **GET** /catalogs/items | Get catalogs items
*CatalogsApi* | [**items_issues_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_issues_list) | **GET** /catalogs/processing_results/{processing_result_id}/item_issues | List item issues
*CatalogsApi* | [**items_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_post) | **POST** /catalogs/items | Get catalogs items (POST)
*CatalogsApi* | [**products_by_product_group_filter_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#products_by_product_group_filter_list) | **POST** /catalogs/products/get_by_product_group_filters | List products by filter
*CatalogsApi* | [**reports_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#reports_create) | **POST** /catalogs/reports | Build catalogs report
*CatalogsApi* | [**reports_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#reports_get) | **GET** /catalogs/reports | Get catalogs report
*CatalogsApi* | [**reports_stats**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#reports_stats) | **GET** /catalogs/reports/stats | List report stats
*ConversionEventsApi* | [**events_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsApi.md#events_create) | **POST** /ad_accounts/{ad_account_id}/events | Send conversions
*ConversionTagsApi* | [**conversion_tags_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#conversion_tags_create) | **POST** /ad_accounts/{ad_account_id}/conversion_tags | Create conversion tag
*ConversionTagsApi* | [**conversion_tags_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#conversion_tags_get) | **GET** /ad_accounts/{ad_account_id}/conversion_tags/{conversion_tag_id} | Get conversion tag
*ConversionTagsApi* | [**conversion_tags_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#conversion_tags_list) | **GET** /ad_accounts/{ad_account_id}/conversion_tags | Get conversion tags
*ConversionTagsApi* | [**ocpm_eligible_conversion_tags_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#ocpm_eligible_conversion_tags_get) | **GET** /ad_accounts/{ad_account_id}/conversion_tags/ocpm_eligible | Get Ocpm eligible conversion tags
*ConversionTagsApi* | [**page_visit_conversion_tags_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#page_visit_conversion_tags_get) | **GET** /ad_accounts/{ad_account_id}/conversion_tags/page_visit | Get page visit conversion tags
*CustomerListsApi* | [**customer_lists_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_create) | **POST** /ad_accounts/{ad_account_id}/customer_lists | Create customer lists
*CustomerListsApi* | [**customer_lists_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_get) | **GET** /ad_accounts/{ad_account_id}/customer_lists/{customer_list_id} | Get customer list
*CustomerListsApi* | [**customer_lists_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_list) | **GET** /ad_accounts/{ad_account_id}/customer_lists | Get customer lists
*CustomerListsApi* | [**customer_lists_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_update) | **PATCH** /ad_accounts/{ad_account_id}/customer_lists/{customer_list_id} | Update customer list
*IntegrationsApi* | [**integrations_commerce_del**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_del) | **DELETE** /integrations/commerce/{external_business_id} | Delete commerce integration
*IntegrationsApi* | [**integrations_commerce_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_get) | **GET** /integrations/commerce/{external_business_id} | Get commerce integration
*IntegrationsApi* | [**integrations_commerce_patch**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_patch) | **PATCH** /integrations/commerce/{external_business_id} | Update commerce integration
*IntegrationsApi* | [**integrations_commerce_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_post) | **POST** /integrations/commerce | Create commerce integration
*IntegrationsApi* | [**integrations_get_by_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_get_by_id) | **GET** /integrations/{id} | Get integration metadata
*IntegrationsApi* | [**integrations_get_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_get_list) | **GET** /integrations | Get integration metadata list
*IntegrationsApi* | [**integrations_logs_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_logs_post) | **POST** /integrations/logs | Receives batched logs from integration applications.
*KeywordsApi* | [**country_keywords_metrics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#country_keywords_metrics_get) | **GET** /ad_accounts/{ad_account_id}/keywords/metrics | Get country's keyword metrics
*KeywordsApi* | [**keywords_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#keywords_create) | **POST** /ad_accounts/{ad_account_id}/keywords | Create keywords
*KeywordsApi* | [**keywords_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#keywords_get) | **GET** /ad_accounts/{ad_account_id}/keywords | Get keywords
*KeywordsApi* | [**keywords_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#keywords_update) | **PATCH** /ad_accounts/{ad_account_id}/keywords | Update keywords
*KeywordsApi* | [**trending_keywords_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#trending_keywords_list) | **GET** /trends/keywords/{region}/top/{trend_type} | List trending keywords
*LeadAdsApi* | [**ad_accounts_subscriptions_del_by_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_del_by_id) | **DELETE** /ad_accounts/{ad_account_id}/leads/subscriptions/{subscription_id} | Delete lead ads subscription
*LeadAdsApi* | [**ad_accounts_subscriptions_get_by_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_get_by_id) | **GET** /ad_accounts/{ad_account_id}/leads/subscriptions/{subscription_id} | Get lead ads subscription
*LeadAdsApi* | [**ad_accounts_subscriptions_get_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_get_list) | **GET** /ad_accounts/{ad_account_id}/leads/subscriptions | Get lead ads subscriptions
*LeadAdsApi* | [**ad_accounts_subscriptions_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_post) | **POST** /ad_accounts/{ad_account_id}/leads/subscriptions | Create lead ads subscription
*LeadFormsApi* | [**lead_form_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_form_get) | **GET** /ad_accounts/{ad_account_id}/lead_forms/{lead_form_id} | Get lead form by id
*LeadFormsApi* | [**lead_form_test_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_form_test_create) | **POST** /ad_accounts/{ad_account_id}/lead_forms/{lead_form_id}/test | Create lead form test data
*LeadFormsApi* | [**lead_forms_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_forms_create) | **POST** /ad_accounts/{ad_account_id}/lead_forms | Create lead forms
*LeadFormsApi* | [**lead_forms_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_forms_list) | **GET** /ad_accounts/{ad_account_id}/lead_forms | List lead forms
*LeadFormsApi* | [**lead_forms_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_forms_update) | **PATCH** /ad_accounts/{ad_account_id}/lead_forms | Update lead forms
*LeadsExportApi* | [**leads_export_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportApi.md#leads_export_create) | **POST** /ad_accounts/{ad_account_id}/leads_export | Create a request to export leads collected from a lead ad
*LeadsExportApi* | [**leads_export_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportApi.md#leads_export_get) | **GET** /ad_accounts/{ad_account_id}/leads_export/{leads_export_id} | Get the lead export from the lead export create call
*MediaApi* | [**media_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaApi.md#media_create) | **POST** /media | Register media upload
*MediaApi* | [**media_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaApi.md#media_get) | **GET** /media/{media_id} | Get media upload details
*MediaApi* | [**media_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaApi.md#media_list) | **GET** /media | List media uploads
*OauthApi* | [**oauth_token**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthApi.md#oauth_token) | **POST** /oauth/token | Generate OAuth access token
*OrderLinesApi* | [**order_lines_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinesApi.md#order_lines_get) | **GET** /ad_accounts/{ad_account_id}/order_lines/{order_line_id} | Get order line
*OrderLinesApi* | [**order_lines_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinesApi.md#order_lines_list) | **GET** /ad_accounts/{ad_account_id}/order_lines | Get order lines
*PinsApi* | [**multi_pins_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#multi_pins_analytics) | **GET** /pins/analytics | Get multiple Pin analytics
*PinsApi* | [**pins_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_analytics) | **GET** /pins/{pin_id}/analytics | Get Pin analytics
*PinsApi* | [**pins_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_create) | **POST** /pins | Create Pin
*PinsApi* | [**pins_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_delete) | **DELETE** /pins/{pin_id} | Delete Pin
*PinsApi* | [**pins_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_get) | **GET** /pins/{pin_id} | Get Pin
*PinsApi* | [**pins_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_list) | **GET** /pins | List Pins
*PinsApi* | [**pins_save**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_save) | **POST** /pins/{pin_id}/save | Save Pin
*PinsApi* | [**pins_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_update) | **PATCH** /pins/{pin_id} | Update Pin
*ProductGroupPromotionsApi* | [**product_group_promotions_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_create) | **POST** /ad_accounts/{ad_account_id}/product_group_promotions | Create product group promotions
*ProductGroupPromotionsApi* | [**product_group_promotions_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_get) | **GET** /ad_accounts/{ad_account_id}/product_group_promotions/{product_group_promotion_id} | Get a product group promotion by id
*ProductGroupPromotionsApi* | [**product_group_promotions_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_list) | **GET** /ad_accounts/{ad_account_id}/product_group_promotions | Get product group promotions
*ProductGroupPromotionsApi* | [**product_group_promotions_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_update) | **PATCH** /ad_accounts/{ad_account_id}/product_group_promotions | Update product group promotions
*ProductGroupPromotionsApi* | [**product_groups_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_groups_analytics) | **GET** /ad_accounts/{ad_account_id}/product_groups/analytics | Get product group analytics
*ResourcesApi* | [**ad_account_countries_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#ad_account_countries_get) | **GET** /resources/ad_account_countries | Get ad accounts countries
*ResourcesApi* | [**delivery_metrics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#delivery_metrics_get) | **GET** /resources/delivery_metrics | Get available metrics' definitions
*ResourcesApi* | [**interest_targeting_options_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#interest_targeting_options_get) | **GET** /resources/targeting/interests/{interest_id} | Get interest details
*ResourcesApi* | [**lead_form_questions_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#lead_form_questions_get) | **GET** /resources/lead_form_questions | Get lead form questions
*ResourcesApi* | [**metrics_ready_state_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#metrics_ready_state_get) | **GET** /resources/metrics_ready_state | Get metrics ready state
*ResourcesApi* | [**targeting_options_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#targeting_options_get) | **GET** /resources/targeting/{targeting_type} | Get targeting options
*SearchApi* | [**search_partner_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SearchApi.md#search_partner_pins) | **GET** /search/partner/pins | Search pins by a given search term
*SearchApi* | [**search_user_boards_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SearchApi.md#search_user_boards_get) | **GET** /search/boards | Search user's boards
*SearchApi* | [**search_user_pins_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SearchApi.md#search_user_pins_list) | **GET** /search/pins | Search user's Pins
*TargetingTemplateApi* | [**targeting_template_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateApi.md#targeting_template_create) | **POST** /ad_accounts/{ad_account_id}/targeting_templates | Create targeting templates
*TargetingTemplateApi* | [**targeting_template_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateApi.md#targeting_template_list) | **GET** /ad_accounts/{ad_account_id}/targeting_templates | List targeting templates
*TargetingTemplateApi* | [**targeting_template_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateApi.md#targeting_template_update) | **PATCH** /ad_accounts/{ad_account_id}/targeting_templates | Update targeting templates
*TermsApi* | [**terms_related_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsApi.md#terms_related_list) | **GET** /terms/related | List related terms
*TermsApi* | [**terms_suggested_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsApi.md#terms_suggested_list) | **GET** /terms/suggested | List suggested terms
*TermsOfServiceApi* | [**terms_of_service_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsOfServiceApi.md#terms_of_service_get) | **GET** /ad_accounts/{ad_account_id}/terms_of_service | Get terms of service
*UserAccountApi* | [**boards_user_follows_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#boards_user_follows_list) | **GET** /user_account/following/boards | List following boards
*UserAccountApi* | [**follow_user_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#follow_user_update) | **POST** /user_account/following/{username} | Follow user
*UserAccountApi* | [**followers_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#followers_list) | **GET** /user_account/followers | List followers
*UserAccountApi* | [**linked_business_accounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#linked_business_accounts_get) | **GET** /user_account/businesses | List linked businesses
*UserAccountApi* | [**unverify_website_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#unverify_website_delete) | **DELETE** /user_account/websites | Unverify website
*UserAccountApi* | [**user_account_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_analytics) | **GET** /user_account/analytics | Get user account analytics
*UserAccountApi* | [**user_account_analytics_top_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_analytics_top_pins) | **GET** /user_account/analytics/top_pins | Get user account top pins analytics
*UserAccountApi* | [**user_account_analytics_top_video_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_analytics_top_video_pins) | **GET** /user_account/analytics/top_video_pins | Get user account top video pins analytics
*UserAccountApi* | [**user_account_followed_interests**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_followed_interests) | **GET** /users/{username}/interests/follow | List following interests
*UserAccountApi* | [**user_account_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_get) | **GET** /user_account | Get user account
*UserAccountApi* | [**user_following_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_following_get) | **GET** /user_account/following | List following
*UserAccountApi* | [**user_websites_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_websites_get) | **GET** /user_account/websites | Get user websites
*UserAccountApi* | [**verify_website_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#verify_website_update) | **POST** /user_account/websites | Verify website
*UserAccountApi* | [**website_verification_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#website_verification_get) | **GET** /user_account/websites/verification | Get user verification code for website claiming
## Documentation For Models
- [Account](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Account.md)
- [ActionType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ActionType.md)
- [AdAccount](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccount.md)
- [AdAccountAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountAnalyticsResponse.md)
- [AdAccountCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateRequest.md)
- [AdAccountCreateSubscriptionRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateSubscriptionRequest.md)
- [AdAccountCreateSubscriptionRequestPartnerMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateSubscriptionRequestPartnerMetadata.md)
- [AdAccountCreateSubscriptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateSubscriptionResponse.md)
- [AdAccountGetSubscriptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountGetSubscriptionResponse.md)
- [AdAccountGetSubscriptionResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountGetSubscriptionResponseAllOf.md)
- [AdAccountGetSubscriptionResponseAllOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountGetSubscriptionResponseAllOf1.md)
- [AdAccountOwner](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountOwner.md)
- [AdAccountsCountryResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsCountryResponse.md)
- [AdAccountsCountryResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsCountryResponseData.md)
- [AdArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdArrayResponse.md)
- [AdArrayResponseElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdArrayResponseElement.md)
- [AdCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdCommon.md)
- [AdCountry](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdCountry.md)
- [AdCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdCreateRequest.md)
- [AdGroupArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupArrayResponse.md)
- [AdGroupArrayResponseElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupArrayResponseElement.md)
- [AdGroupAudienceSizingRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupAudienceSizingRequest.md)
- [AdGroupAudienceSizingRequestKeywords](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupAudienceSizingRequestKeywords.md)
- [AdGroupAudienceSizingResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupAudienceSizingResponse.md)
- [AdGroupCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupCommon.md)
- [AdGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupCreateRequest.md)
- [AdGroupCreateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupCreateRequestAllOf.md)
- [AdGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupResponse.md)
- [AdGroupResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupResponseAllOf.md)
- [AdGroupSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupSummaryStatus.md)
- [AdGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupUpdateRequest.md)
- [AdGroupUpdateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupUpdateRequestAllOf.md)
- [AdGroupsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsAnalyticsResponse.md)
- [AdPinId](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPinId.md)
- [AdPreviewCreateFromImage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewCreateFromImage.md)
- [AdPreviewCreateFromPin](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewCreateFromPin.md)
- [AdPreviewRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewRequest.md)
- [AdPreviewURLResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewURLResponse.md)
- [AdResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdResponse.md)
- [AdResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdResponseAllOf.md)
- [AdUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdUpdateRequest.md)
- [AdUpdateRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdUpdateRequest1.md)
- [AdsAnalyticsAdTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsAdTargetingType.md)
- [AdsAnalyticsCampaignTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCampaignTargetingType.md)
- [AdsAnalyticsCreateAsyncRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncRequest.md)
- [AdsAnalyticsCreateAsyncRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncRequestAllOf.md)
- [AdsAnalyticsCreateAsyncRequestAllOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncRequestAllOf1.md)
- [AdsAnalyticsCreateAsyncResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncResponse.md)
- [AdsAnalyticsFilterColumn](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsFilterColumn.md)
- [AdsAnalyticsFilterOperator](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsFilterOperator.md)
- [AdsAnalyticsGetAsyncResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsGetAsyncResponse.md)
- [AdsAnalyticsMetricsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsMetricsFilter.md)
- [AdsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsResponse.md)
- [AdsAnalyticsTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsTargetingType.md)
- [AdsCreditDiscountsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsCreditDiscountsResponse.md)
- [AdsCreditRedeemRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsCreditRedeemRequest.md)
- [AdsCreditRedeemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsCreditRedeemResponse.md)
- [AdvancedAuctionBidOptions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionBidOptions.md)
- [AdvancedAuctionItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItem.md)
- [AdvancedAuctionItemAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemAllOf.md)
- [AdvancedAuctionItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItems.md)
- [AdvancedAuctionItemsGetRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsGetRecord.md)
- [AdvancedAuctionItemsGetRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsGetRequest.md)
- [AdvancedAuctionItemsSubmitDeleteRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitDeleteRecord.md)
- [AdvancedAuctionItemsSubmitRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitRecord.md)
- [AdvancedAuctionItemsSubmitRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitRequest.md)
- [AdvancedAuctionItemsSubmitUpsertRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitUpsertRecord.md)
- [AdvancedAuctionItemsSubmitUpsertRecordAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitUpsertRecordAllOf.md)
- [AdvancedAuctionKey](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionKey.md)
- [AdvancedAuctionOperation](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionOperation.md)
- [AdvancedAuctionOperationError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionOperationError.md)
- [AdvancedAuctionProcessedItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionProcessedItem.md)
- [AdvancedAuctionProcessedItemAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionProcessedItemAllOf.md)
- [AdvancedAuctionProcessedItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionProcessedItems.md)
- [AgeBucketList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AgeBucketList.md)
- [AnalyticsDailyMetrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AnalyticsDailyMetrics.md)
- [AnalyticsMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AnalyticsMetricsResponse.md)
- [AnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AnalyticsResponse.md)
- [AppTypeMultipliers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AppTypeMultipliers.md)
- [AssetGroupBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetGroupBinding.md)
- [AssetGroupType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetGroupType.md)
- [AssetGroupTypes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetGroupTypes.md)
- [AssetIdPermissions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetIdPermissions.md)
- [AssetIdToPermissions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetIdToPermissions.md)
- [Audience](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Audience.md)
- [AudienceAccountType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceAccountType.md)
- [AudienceCategory](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCategory.md)
- [AudienceCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCommon.md)
- [AudienceCreateCustomRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateCustomRequest.md)
- [AudienceCreateCustomRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateCustomRequest1.md)
- [AudienceCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateRequest.md)
- [AudienceCreateRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateRequest1.md)
- [AudienceDataParty](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDataParty.md)
- [AudienceDefinition](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDefinition.md)
- [AudienceDefinitionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDefinitionResponse.md)
- [AudienceDemographicValue](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDemographicValue.md)
- [AudienceDemographics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDemographics.md)
- [AudienceInsightCategoryArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightCategoryArrayResponse.md)
- [AudienceInsightCategoryCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightCategoryCommon.md)
- [AudienceInsightType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightType.md)
- [AudienceInsightsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightsResponse.md)
- [AudienceRule](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceRule.md)
- [AudienceShareType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceShareType.md)
- [AudienceSharingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingType.md)
- [AudienceSubcategory](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSubcategory.md)
- [AudienceType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceType.md)
- [AudienceUpdateOperationType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceUpdateOperationType.md)
- [AudienceUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceUpdateRequest.md)
- [AudienceUpdateRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceUpdateRequest1.md)
- [AuthRespondInvitesBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AuthRespondInvitesBody.md)
- [AuthRespondInvitesBodyAction](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AuthRespondInvitesBodyAction.md)
- [AuthRespondInvitesBodyInvites](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AuthRespondInvitesBodyInvites.md)
- [AvailabilityFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AvailabilityFilter.md)
- [BaseInviteDataResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BaseInviteDataResponse.md)
- [BaseInviteDataResponseInviteData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BaseInviteDataResponseInviteData.md)
- [BatchOperation](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BatchOperation.md)
- [BatchOperationStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BatchOperationStatus.md)
- [BidFloor](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BidFloor.md)
- [BidFloorRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BidFloorRequest.md)
- [BidFloorSpec](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BidFloorSpec.md)
- [BillingProfilesResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingProfilesResponse.md)
- [Board](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Board.md)
- [BoardMedia](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardMedia.md)
- [BoardOwner](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardOwner.md)
- [BoardSection](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardSection.md)
- [BoardUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardUpdate.md)
- [BookClosedResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BookClosedResponse.md)
- [BrandFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BrandFilter.md)
- [BudgetType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BudgetType.md)
- [BulkDownloadRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkDownloadRequest.md)
- [BulkDownloadRequestCampaignFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkDownloadRequestCampaignFilter.md)
- [BulkDownloadResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkDownloadResponse.md)
- [BulkEntityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkEntityType.md)
- [BulkOutputFormat](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkOutputFormat.md)
- [BulkPinAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkPinAnalyticsResponse.md)
- [BulkReportingJobStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkReportingJobStatus.md)
- [BulkUpsertRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertRequest.md)
- [BulkUpsertRequestCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertRequestCreate.md)
- [BulkUpsertRequestUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertRequestUpdate.md)
- [BulkUpsertResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertResponse.md)
- [BulkUpsertStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertStatus.md)
- [BulkUpsertStatusResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertStatusResponse.md)
- [BusinessAccessError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessError.md)
- [BusinessAccessRole](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRole.md)
- [BusinessAccessUserSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessUserSummary.md)
- [BusinessMemberAssetsSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessMemberAssetsSummary.md)
- [BusinessMemberAssetsSummaryAdAccounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessMemberAssetsSummaryAdAccounts.md)
- [BusinessMemberAssetsSummaryProfiles](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessMemberAssetsSummaryProfiles.md)
- [BusinessRole](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessRole.md)
- [BusinessRoleCheckMode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessRoleCheckMode.md)
- [BusinessRoleForMembers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessRoleForMembers.md)
- [BusinessSharedAudience](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudience.md)
- [BusinessSharedAudience1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudience1.md)
- [BusinessSharedAudienceResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudienceResponse.md)
- [BusinessSharedAudienceResponse1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudienceResponse1.md)
- [BusinessesBusinessIdMembersAssetsAccessAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessesBusinessIdMembersAssetsAccessAccesses.md)
- [CampaignCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCommon.md)
- [CampaignCreateCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateCommon.md)
- [CampaignCreateCommonAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateCommonAllOf.md)
- [CampaignCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateRequest.md)
- [CampaignCreateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateRequestAllOf.md)
- [CampaignCreateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponse.md)
- [CampaignCreateResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponseData.md)
- [CampaignCreateResponseDataAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponseDataAllOf.md)
- [CampaignCreateResponseItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponseItem.md)
- [CampaignId](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignId.md)
- [CampaignResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignResponse.md)
- [CampaignResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignResponseAllOf.md)
- [CampaignSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignSummaryStatus.md)
- [CampaignUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignUpdateRequest.md)
- [CampaignUpdateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignUpdateRequestAllOf.md)
- [CampaignUpdateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignUpdateResponse.md)
- [CampaignsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsAnalyticsResponse.md)
- [CancelInvitesBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CancelInvitesBody.md)
- [Catalog](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Catalog.md)
- [CatalogAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogAllOf.md)
- [CatalogsCreateCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateCreativeAssetsItem.md)
- [CatalogsCreateHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateHotelItem.md)
- [CatalogsCreateReportResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateReportResponse.md)
- [CatalogsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateRequest.md)
- [CatalogsCreateRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateRetailItem.md)
- [CatalogsCreativeAssetsAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsAttributes.md)
- [CatalogsCreativeAssetsAttributesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsAttributesAllOf.md)
- [CatalogsCreativeAssetsBatchItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsBatchItem.md)
- [CatalogsCreativeAssetsBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsBatchRequest.md)
- [CatalogsCreativeAssetsFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsFeed.md)
- [CatalogsCreativeAssetsFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsFeedsCreateRequest.md)
- [CatalogsCreativeAssetsFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsFeedsUpdateRequest.md)
- [CatalogsCreativeAssetsItemErrorResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemErrorResponse.md)
- [CatalogsCreativeAssetsItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemResponse.md)
- [CatalogsCreativeAssetsItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemsBatch.md)
- [CatalogsCreativeAssetsItemsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemsFilter.md)
- [CatalogsCreativeAssetsItemsPostFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemsPostFilter.md)
- [CatalogsCreativeAssetsListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsListProductsByCatalogBasedFilterRequest.md)
- [CatalogsCreativeAssetsProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProduct.md)
- [CatalogsCreativeAssetsProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroup.md)
- [CatalogsCreativeAssetsProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupCreateRequest.md)
- [CatalogsCreativeAssetsProductGroupFilterKeys](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFilterKeys.md)
- [CatalogsCreativeAssetsProductGroupFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFilters.md)
- [CatalogsCreativeAssetsProductGroupFiltersAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFiltersAllOf.md)
- [CatalogsCreativeAssetsProductGroupFiltersAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFiltersAnyOf.md)
- [CatalogsCreativeAssetsProductGroupProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupProductCounts.md)
- [CatalogsCreativeAssetsProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupUpdateRequest.md)
- [CatalogsCreativeAssetsProductMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductMetadata.md)
- [CatalogsDbItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDbItem.md)
- [CatalogsDeleteCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDeleteCreativeAssetsItem.md)
- [CatalogsDeleteHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDeleteHotelItem.md)
- [CatalogsDeleteRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDeleteRetailItem.md)
- [CatalogsFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeed.md)
- [CatalogsFeedCredentials](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedCredentials.md)
- [CatalogsFeedIngestion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestion.md)
- [CatalogsFeedIngestionDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionDetails.md)
- [CatalogsFeedIngestionErrors](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionErrors.md)
- [CatalogsFeedIngestionInfo](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionInfo.md)
- [CatalogsFeedIngestionWarnings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionWarnings.md)
- [CatalogsFeedProcessingResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingResult.md)
- [CatalogsFeedProcessingResultFields](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingResultFields.md)
- [CatalogsFeedProcessingSchedule](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingSchedule.md)
- [CatalogsFeedProcessingStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingStatus.md)
- [CatalogsFeedProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProductCounts.md)
- [CatalogsFeedValidationDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedValidationDetails.md)
- [CatalogsFeedValidationErrors](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedValidationErrors.md)
- [CatalogsFeedValidationWarnings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedValidationWarnings.md)
- [CatalogsFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedsCreateRequest.md)
- [CatalogsFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedsUpdateRequest.md)
- [CatalogsFormat](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFormat.md)
- [CatalogsHotelAddress](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAddress.md)
- [CatalogsHotelAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAttributes.md)
- [CatalogsHotelAttributesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAttributesAllOf.md)
- [CatalogsHotelAttributesAllOfMainImage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAttributesAllOfMainImage.md)
- [CatalogsHotelBatchItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelBatchItem.md)
- [CatalogsHotelBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelBatchRequest.md)
- [CatalogsHotelFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelFeed.md)
- [CatalogsHotelFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelFeedsCreateRequest.md)
- [CatalogsHotelFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelFeedsUpdateRequest.md)
- [CatalogsHotelGuestRatings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelGuestRatings.md)
- [CatalogsHotelItemErrorResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemErrorResponse.md)
- [CatalogsHotelItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemResponse.md)
- [CatalogsHotelItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemsBatch.md)
- [CatalogsHotelItemsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemsFilter.md)
- [CatalogsHotelItemsPostFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemsPostFilter.md)
- [CatalogsHotelListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelListProductsByCatalogBasedFilterRequest.md)
- [CatalogsHotelProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProduct.md)
- [CatalogsHotelProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroup.md)
- [CatalogsHotelProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupCreateRequest.md)
- [CatalogsHotelProductGroupFilterKeys](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFilterKeys.md)
- [CatalogsHotelProductGroupFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFilters.md)
- [CatalogsHotelProductGroupFiltersAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFiltersAllOf.md)
- [CatalogsHotelProductGroupFiltersAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFiltersAnyOf.md)
- [CatalogsHotelProductGroupProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupProductCounts.md)
- [CatalogsHotelProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupUpdateRequest.md)
- [CatalogsHotelProductMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductMetadata.md)
- [CatalogsHotelReportParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelReportParameters.md)
- [CatalogsItemValidationDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationDetails.md)
- [CatalogsItemValidationErrors](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationErrors.md)
- [CatalogsItemValidationIssue](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationIssue.md)
- [CatalogsItemValidationIssues](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationIssues.md)
- [CatalogsItemValidationWarnings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationWarnings.md)
- [CatalogsItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItems.md)
- [CatalogsItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsBatch.md)
- [CatalogsItemsBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsBatchRequest.md)
- [CatalogsItemsCreateBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsCreateBatchRequest.md)
- [CatalogsItemsDeleteBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsDeleteBatchRequest.md)
- [CatalogsItemsDeleteDiscontinuedBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsDeleteDiscontinuedBatchRequest.md)
- [CatalogsItemsFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsFilters.md)
- [CatalogsItemsPostFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsPostFilters.md)
- [CatalogsItemsRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsRequest.md)
- [CatalogsItemsUpdateBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsUpdateBatchRequest.md)
- [CatalogsItemsUpsertBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsUpsertBatchRequest.md)
- [CatalogsListProductsByFeedBasedFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsListProductsByFeedBasedFilter.md)
- [CatalogsListProductsByFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsListProductsByFilterRequest.md)
- [CatalogsLocale](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsLocale.md)
- [CatalogsProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProduct.md)
- [CatalogsProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupCreateRequest.md)
- [CatalogsProductGroupCurrencyCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupCurrencyCriteria.md)
- [CatalogsProductGroupFilterKeys](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFilterKeys.md)
- [CatalogsProductGroupFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFilters.md)
- [CatalogsProductGroupFiltersAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersAllOf.md)
- [CatalogsProductGroupFiltersAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersAnyOf.md)
- [CatalogsProductGroupFiltersRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersRequest.md)
- [CatalogsProductGroupFiltersRequestAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersRequestAnyOf.md)
- [CatalogsProductGroupFiltersRequestAnyOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersRequestAnyOf1.md)
- [CatalogsProductGroupMultipleCountriesCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleCountriesCriteria.md)
- [CatalogsProductGroupMultipleGenderCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleGenderCriteria.md)
- [CatalogsProductGroupMultipleMediaTypesCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleMediaTypesCriteria.md)
- [CatalogsProductGroupMultipleStringCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleStringCriteria.md)
- [CatalogsProductGroupMultipleStringListCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleStringListCriteria.md)
- [CatalogsProductGroupPricingCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupPricingCriteria.md)
- [CatalogsProductGroupPricingCurrencyCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupPricingCurrencyCriteria.md)
- [CatalogsProductGroupProductCountsVertical](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupProductCountsVertical.md)
- [CatalogsProductGroupStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupStatus.md)
- [CatalogsProductGroupType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupType.md)
- [CatalogsProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupUpdateRequest.md)
- [CatalogsReport](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReport.md)
- [CatalogsReportDistributionIssueFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportDistributionIssueFilter.md)
- [CatalogsReportDistributionStats](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportDistributionStats.md)
- [CatalogsReportFeedIngestionFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportFeedIngestionFilter.md)
- [CatalogsReportFeedIngestionStats](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportFeedIngestionStats.md)
- [CatalogsReportParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportParameters.md)
- [CatalogsReportStats](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportStats.md)
- [CatalogsRetailBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailBatchRequest.md)
- [CatalogsRetailFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailFeed.md)
- [CatalogsRetailFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailFeedsCreateRequest.md)
- [CatalogsRetailFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailFeedsUpdateRequest.md)
- [CatalogsRetailItemErrorResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemErrorResponse.md)
- [CatalogsRetailItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemResponse.md)
- [CatalogsRetailItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemsBatch.md)
- [CatalogsRetailItemsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemsFilter.md)
- [CatalogsRetailItemsPostFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemsPostFilter.md)
- [CatalogsRetailListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailListProductsByCatalogBasedFilterRequest.md)
- [CatalogsRetailProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProduct.md)
- [CatalogsRetailProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroup.md)
- [CatalogsRetailProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroupCreateRequest.md)
- [CatalogsRetailProductGroupProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroupProductCounts.md)
- [CatalogsRetailProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroupUpdateRequest.md)
- [CatalogsRetailProductMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductMetadata.md)
- [CatalogsRetailReportParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailReportParameters.md)
- [CatalogsStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsStatus.md)
- [CatalogsType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsType.md)
- [CatalogsUpdatableCreativeAssetsAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdatableCreativeAssetsAttributes.md)
- [CatalogsUpdatableHotelAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdatableHotelAttributes.md)
- [CatalogsUpdateCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdateCreativeAssetsItem.md)
- [CatalogsUpdateHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdateHotelItem.md)
- [CatalogsUpdateRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdateRetailItem.md)
- [CatalogsUpsertCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpsertCreativeAssetsItem.md)
- [CatalogsUpsertHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpsertHotelItem.md)
- [CatalogsUpsertRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpsertRetailItem.md)
- [CatalogsVerticalBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalBatchRequest.md)
- [CatalogsVerticalFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalFeedsCreateRequest.md)
- [CatalogsVerticalFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalFeedsUpdateRequest.md)
- [CatalogsVerticalProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalProductGroup.md)
- [CatalogsVerticalProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalProductGroupCreateRequest.md)
- [CatalogsVerticalProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalProductGroupUpdateRequest.md)
- [CatalogsVerticalsListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalsListProductsByCatalogBasedFilterRequest.md)
- [ConditionFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConditionFilter.md)
- [ConversionApiResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionApiResponse.md)
- [ConversionApiResponseEvents](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionApiResponseEvents.md)
- [ConversionAttributionWindowDays](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionAttributionWindowDays.md)
- [ConversionEventResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventResponse.md)
- [ConversionEvents](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEvents.md)
- [ConversionEventsCustomData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsCustomData.md)
- [ConversionEventsCustomDataContents](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsCustomDataContents.md)
- [ConversionEventsData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsData.md)
- [ConversionEventsUserData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserData.md)
- [ConversionEventsUserDataAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserDataAnyOf.md)
- [ConversionEventsUserDataAnyOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserDataAnyOf1.md)
- [ConversionEventsUserDataAnyOf2](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserDataAnyOf2.md)
- [ConversionReportAttributionType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionReportAttributionType.md)
- [ConversionReportTimeType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionReportTimeType.md)
- [ConversionTagCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagCommon.md)
- [ConversionTagConfigs](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagConfigs.md)
- [ConversionTagCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagCreate.md)
- [ConversionTagListResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagListResponse.md)
- [ConversionTagResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagResponse.md)
- [ConversionTagType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagType.md)
- [ConversionTagsOcpmEligibleResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsOcpmEligibleResponse.md)
- [Country](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Country.md)
- [CountryFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CountryFilter.md)
- [CreateAssetAccessRequestBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestBody.md)
- [CreateAssetAccessRequestBodyAssetRequests](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestBodyAssetRequests.md)
- [CreateAssetAccessRequestErrorMessage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestErrorMessage.md)
- [CreateAssetAccessRequestResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestResponse.md)
- [CreateAssetGroupBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetGroupBody.md)
- [CreateAssetGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetGroupResponse.md)
- [CreateAssetInvitesRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetInvitesRequest.md)
- [CreateAssetInvitesRequestItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetInvitesRequestItem.md)
- [CreateInvitesResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateInvitesResultsResponseArray.md)
- [CreateInvitesResultsResponseArrayInvite](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateInvitesResultsResponseArrayInvite.md)
- [CreateInvitesResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateInvitesResultsResponseArrayItems.md)
- [CreateMMMReportRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportRequest.md)
- [CreateMMMReportRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportRequestAllOf.md)
- [CreateMMMReportResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportResponse.md)
- [CreateMMMReportResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportResponseData.md)
- [CreateMembershipOrPartnershipInvitesBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMembershipOrPartnershipInvitesBody.md)
- [CreativeAssetsIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeAssetsIdFilter.md)
- [CreativeAssetsProcessingRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeAssetsProcessingRecord.md)
- [CreativeAssetsVisibilityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeAssetsVisibilityType.md)
- [CreativeType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeType.md)
- [Currency](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Currency.md)
- [CurrencyFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CurrencyFilter.md)
- [CustomLabel0Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel0Filter.md)
- [CustomLabel1Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel1Filter.md)
- [CustomLabel2Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel2Filter.md)
- [CustomLabel3Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel3Filter.md)
- [CustomLabel4Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel4Filter.md)
- [CustomerList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerList.md)
- [CustomerListRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListRequest.md)
- [CustomerListUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListUpdateRequest.md)
- [DataOutputFormat](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DataOutputFormat.md)
- [DataStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DataStatus.md)
- [DeleteAssetGroupBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteAssetGroupBody.md)
- [DeleteAssetGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteAssetGroupResponse.md)
- [DeleteAssetGroupResponseExceptions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteAssetGroupResponseExceptions.md)
- [DeleteInvitesResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteInvitesResultsResponseArray.md)
- [DeleteInvitesResultsResponseArrayException](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteInvitesResultsResponseArrayException.md)
- [DeleteInvitesResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteInvitesResultsResponseArrayItems.md)
- [DeleteMemberAccessResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteMemberAccessResult.md)
- [DeleteMemberAccessResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteMemberAccessResultsResponseArray.md)
- [DeletePartnerAssetAccessBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetAccessBody.md)
- [DeletePartnerAssetAccessBodyAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetAccessBodyAccesses.md)
- [DeletePartnerAssetsResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetsResult.md)
- [DeletePartnerAssetsResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetsResultsResponseArray.md)
- [DeletePartnersRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnersRequest.md)
- [DeletePartnersResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnersResponse.md)
- [DeletedMembersResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletedMembersResponse.md)
- [DeliveryMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeliveryMetricsResponse.md)
- [DeliveryMetricsResponseItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeliveryMetricsResponseItems.md)
- [DetailedError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DetailedError.md)
- [EnhancedMatchStatusType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/EnhancedMatchStatusType.md)
- [EntityStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/EntityStatus.md)
- [Error](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Error.md)
- [Exception](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Exception.md)
- [FeedFields](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FeedFields.md)
- [FeedFields1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FeedFields1.md)
- [FeedFields2](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FeedFields2.md)
- [FollowUserRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FollowUserRequest.md)
- [Gender](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Gender.md)
- [GenderFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GenderFilter.md)
- [GenderList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GenderList.md)
- [GetAudiencesOrderBy](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetAudiencesOrderBy.md)
- [GetBusinessAssetTypeResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetBusinessAssetTypeResponse.md)
- [GetBusinessAssetsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetBusinessAssetsResponse.md)
- [GetMMMReportResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetMMMReportResponse.md)
- [GetMMMReportResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetMMMReportResponseData.md)
- [GetPartnerAssetsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetPartnerAssetsResponse.md)
- [GoogleProductCategory0Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory0Filter.md)
- [GoogleProductCategory1Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory1Filter.md)
- [GoogleProductCategory2Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory2Filter.md)
- [GoogleProductCategory3Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory3Filter.md)
- [GoogleProductCategory4Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory4Filter.md)
- [GoogleProductCategory5Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory5Filter.md)
- [GoogleProductCategory6Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory6Filter.md)
- [Granularity](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Granularity.md)
- [GridClickType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GridClickType.md)
- [HotelIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/HotelIdFilter.md)
- [HotelProcessingRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/HotelProcessingRecord.md)
- [ImageDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ImageDetails.md)
- [ImageMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ImageMetadata.md)
- [ImageMetadataImages](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ImageMetadataImages.md)
- [InlineObject](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InlineObject.md)
- [InlineObject1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InlineObject1.md)
- [IntegrationLog](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLog.md)
- [IntegrationLogClientError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogClientError.md)
- [IntegrationLogClientRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogClientRequest.md)
- [IntegrationLogsInvalidLogResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsInvalidLogResponse.md)
- [IntegrationLogsInvalidLogResponseRejectedLogs](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsInvalidLogResponseRejectedLogs.md)
- [IntegrationLogsRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsRequest.md)
- [IntegrationLogsSuccessResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsSuccessResponse.md)
- [IntegrationMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationMetadata.md)
- [IntegrationRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationRecord.md)
- [IntegrationRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationRequest.md)
- [IntegrationRequestPatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationRequestPatch.md)
- [Interest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Interest.md)
- [InviteAssetsSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteAssetsSummary.md)
- [InviteAssetsSummaryAdAccounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteAssetsSummaryAdAccounts.md)
- [InviteAssetsSummaryProfiles](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteAssetsSummaryProfiles.md)
- [InviteBusinessRoleBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteBusinessRoleBinding.md)
- [InviteExceptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteExceptionResponse.md)
- [InviteResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteResponse.md)
- [InviteStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteStatus.md)
- [InviteType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteType.md)
- [ItemAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributes.md)
- [ItemAttributesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributesAllOf.md)
- [ItemAttributesRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributesRequest.md)
- [ItemAttributesRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributesRequestAllOf.md)
- [ItemBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemBatchRecord.md)
- [ItemCreateBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemCreateBatchRecord.md)
- [ItemDeleteBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemDeleteBatchRecord.md)
- [ItemDeleteDiscontinuedBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemDeleteDiscontinuedBatchRecord.md)
- [ItemGroupIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemGroupIdFilter.md)
- [ItemIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemIdFilter.md)
- [ItemProcessingRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemProcessingRecord.md)
- [ItemProcessingStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemProcessingStatus.md)
- [ItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemResponse.md)
- [ItemResponseAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemResponseAnyOf.md)
- [ItemResponseAnyOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemResponseAnyOf1.md)
- [ItemUpdateBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemUpdateBatchRecord.md)
- [ItemUpsertBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemUpsertBatchRecord.md)
- [ItemValidationEvent](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemValidationEvent.md)
- [Keyword](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Keyword.md)
- [KeywordAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordAllOf.md)
- [KeywordError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordError.md)
- [KeywordList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordList.md)
- [KeywordMetrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordMetrics.md)
- [KeywordMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordMetricsResponse.md)
- [KeywordUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordUpdate.md)
- [KeywordUpdateBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordUpdateBody.md)
- [KeywordsCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsCommon.md)
- [KeywordsMetricsArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsMetricsArrayResponse.md)
- [KeywordsRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsRequest.md)
- [KeywordsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsResponse.md)
- [L1InterestList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/L1InterestList.md)
- [Language](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Language.md)
- [LeadFormArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormArrayResponse.md)
- [LeadFormArrayResponseItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormArrayResponseItems.md)
- [LeadFormCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormCommon.md)
- [LeadFormCommonPolicyLinks](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormCommonPolicyLinks.md)
- [LeadFormCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormCreateRequest.md)
- [LeadFormQuestion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormQuestion.md)
- [LeadFormQuestionFieldType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormQuestionFieldType.md)
- [LeadFormQuestionType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormQuestionType.md)
- [LeadFormResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormResponse.md)
- [LeadFormResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormResponseAllOf.md)
- [LeadFormStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormStatus.md)
- [LeadFormTestRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormTestRequest.md)
- [LeadFormTestResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormTestResponse.md)
- [LeadFormUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormUpdateRequest.md)
- [LeadFormUpdateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormUpdateRequestAllOf.md)
- [LeadsExportCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportCreateRequest.md)
- [LeadsExportCreateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportCreateResponse.md)
- [LeadsExportResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportResponseData.md)
- [LeadsExportStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportStatus.md)
- [LineItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LineItem.md)
- [LinkedBusiness](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LinkedBusiness.md)
- [MMMReportingColumn](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MMMReportingColumn.md)
- [MMMReportingTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MMMReportingTargetingType.md)
- [MatchType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MatchType.md)
- [MatchTypeResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MatchTypeResponse.md)
- [MaxPriceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MaxPriceFilter.md)
- [MediaType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaType.md)
- [MediaTypeFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaTypeFilter.md)
- [MediaUpload](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUpload.md)
- [MediaUploadAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadAllOf.md)
- [MediaUploadAllOfUploadParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadAllOfUploadParameters.md)
- [MediaUploadDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadDetails.md)
- [MediaUploadRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadRequest.md)
- [MediaUploadStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadStatus.md)
- [MediaUploadType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadType.md)
- [MemberBusinessRole](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MemberBusinessRole.md)
- [MembersToDeleteBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MembersToDeleteBody.md)
- [MembersToDeleteBodyMembers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MembersToDeleteBodyMembers.md)
- [Metrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Metrics.md)
- [MetricsReportingLevel](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MetricsReportingLevel.md)
- [MetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MetricsResponse.md)
- [MinPriceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MinPriceFilter.md)
- [NonNullableCatalogsCurrency](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NonNullableCatalogsCurrency.md)
- [NonNullableProductAvailabilityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NonNullableProductAvailabilityType.md)
- [NullableCatalogsItemFieldType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NullableCatalogsItemFieldType.md)
- [NullableCurrency](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NullableCurrency.md)
- [OauthAccessTokenRequestClientCredentials](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestClientCredentials.md)
- [OauthAccessTokenRequestClientCredentialsAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestClientCredentialsAllOf.md)
- [OauthAccessTokenRequestCode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestCode.md)
- [OauthAccessTokenRequestCodeAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestCodeAllOf.md)
- [OauthAccessTokenRequestRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestRefresh.md)
- [OauthAccessTokenRequestRefreshAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestRefreshAllOf.md)
- [OauthAccessTokenResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponse.md)
- [OauthAccessTokenResponseClientCredentials](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseClientCredentials.md)
- [OauthAccessTokenResponseCode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseCode.md)
- [OauthAccessTokenResponseCodeAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseCodeAllOf.md)
- [OauthAccessTokenResponseEverlastingRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseEverlastingRefresh.md)
- [OauthAccessTokenResponseEverlastingRefreshAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseEverlastingRefreshAllOf.md)
- [OauthAccessTokenResponseIntegrationRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseIntegrationRefresh.md)
- [OauthAccessTokenResponseRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseRefresh.md)
- [OauthAccessTokenResponseRefreshAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseRefreshAllOf.md)
- [ObjectiveType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ObjectiveType.md)
- [OperationType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OperationType.md)
- [OptimizationGoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadata.md)
- [OptimizationGoalMetadataConversionTagV3GoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataConversionTagV3GoalMetadata.md)
- [OptimizationGoalMetadataConversionTagV3GoalMetadataAttributionWindows](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataConversionTagV3GoalMetadataAttributionWindows.md)
- [OptimizationGoalMetadataFrequencyGoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataFrequencyGoalMetadata.md)
- [OptimizationGoalMetadataScrollupGoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataScrollupGoalMetadata.md)
- [OrderLine](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLine.md)
- [OrderLineAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineAllOf.md)
- [OrderLineError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineError.md)
- [OrderLinePaidType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinePaidType.md)
- [OrderLineResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineResponse.md)
- [OrderLineSingleResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineSingleResponse.md)
- [OrderLineStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineStatus.md)
- [OrderLines](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLines.md)
- [OrderLinesArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinesArrayResponse.md)
- [PacingDeliveryType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PacingDeliveryType.md)
- [Paginated](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Paginated.md)
- [PartnerType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PartnerType.md)
- [Permissions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Permissions.md)
- [PermissionsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PermissionsResponse.md)
- [PermissionsWithOwner](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PermissionsWithOwner.md)
- [Pin](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Pin.md)
- [PinAnalyticsMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinAnalyticsMetricsResponse.md)
- [PinAnalyticsMetricsResponseDailyMetrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinAnalyticsMetricsResponseDailyMetrics.md)
- [PinAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinAnalyticsResponse.md)
- [PinCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinCreate.md)
- [PinMedia](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMedia.md)
- [PinMediaMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaMetadata.md)
- [PinMediaSource](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSource.md)
- [PinMediaSourceImageBase64](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImageBase64.md)
- [PinMediaSourceImageURL](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImageURL.md)
- [PinMediaSourceImagesBase64](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesBase64.md)
- [PinMediaSourceImagesBase64Items](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesBase64Items.md)
- [PinMediaSourceImagesURL](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesURL.md)
- [PinMediaSourceImagesURLItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesURLItems.md)
- [PinMediaSourcePinURL](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourcePinURL.md)
- [PinMediaSourceVideoID](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceVideoID.md)
- [PinMediaWithImage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImage.md)
- [PinMediaWithImageAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImageAllOf.md)
- [PinMediaWithImageAndVideo](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImageAndVideo.md)
- [PinMediaWithImageAndVideoAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImageAndVideoAllOf.md)
- [PinMediaWithImages](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImages.md)
- [PinMediaWithImagesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImagesAllOf.md)
- [PinMediaWithVideo](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideo.md)
- [PinMediaWithVideoAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideoAllOf.md)
- [PinMediaWithVideos](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideos.md)
- [PinMediaWithVideosAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideosAllOf.md)
- [PinPromotionSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinPromotionSummaryStatus.md)
- [PinUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinUpdate.md)
- [PinUpdateCarouselSlots](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinUpdateCarouselSlots.md)
- [PinterestTagEventData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinterestTagEventData.md)
- [PlacementGroupType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PlacementGroupType.md)
- [PlacementMultipliers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PlacementMultipliers.md)
- [PriceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PriceFilter.md)
- [ProductAvailabilityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductAvailabilityType.md)
- [ProductGroupAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupAnalyticsResponse.md)
- [ProductGroupPromotion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotion.md)
- [ProductGroupPromotionCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionCreateRequest.md)
- [ProductGroupPromotionCreateRequestElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionCreateRequestElement.md)
- [ProductGroupPromotionCreateRequestElementAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionCreateRequestElementAllOf.md)
- [ProductGroupPromotionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionResponse.md)
- [ProductGroupPromotionResponseElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionResponseElement.md)
- [ProductGroupPromotionResponseItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionResponseItem.md)
- [ProductGroupPromotionUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionUpdateRequest.md)
- [ProductGroupReferenceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupReferenceFilter.md)
- [ProductGroupSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupSummaryStatus.md)
- [ProductType0Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType0Filter.md)
- [ProductType1Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType1Filter.md)
- [ProductType2Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType2Filter.md)
- [ProductType3Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType3Filter.md)
- [ProductType4Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType4Filter.md)
- [QuizPinData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinData.md)
- [QuizPinOption](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinOption.md)
- [QuizPinQuestion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinQuestion.md)
- [QuizPinResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinResult.md)
- [RelatedTerms](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RelatedTerms.md)
- [RelatedTermsRelatedTermsList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RelatedTermsRelatedTermsList.md)
- [ReportingColumnAsync](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ReportingColumnAsync.md)
- [RespondToInvitesResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RespondToInvitesResponseArray.md)
- [RespondToInvitesResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RespondToInvitesResponseArrayItems.md)
- [Role](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Role.md)
- [SSIOAccountAddress](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountAddress.md)
- [SSIOAccountItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountItem.md)
- [SSIOAccountPMPName](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountPMPName.md)
- [SSIOAccountResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountResponse.md)
- [SSIOCreateInsertionOrderRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOCreateInsertionOrderRequest.md)
- [SSIOCreateInsertionOrderRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOCreateInsertionOrderRequestAllOf.md)
- [SSIOCreateInsertionOrderResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOCreateInsertionOrderResponse.md)
- [SSIOEditInsertionOrderRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOEditInsertionOrderRequest.md)
- [SSIOEditInsertionOrderRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOEditInsertionOrderRequestAllOf.md)
- [SSIOEditInsertionOrderResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOEditInsertionOrderResponse.md)
- [SSIOInsertionOrderCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOInsertionOrderCommon.md)
- [SSIOInsertionOrderStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOInsertionOrderStatus.md)
- [SSIOInsertionOrderStatusResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOInsertionOrderStatusResponse.md)
- [SSIOOrderLine](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOOrderLine.md)
- [SharedAudience](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudience.md)
- [SharedAudience1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudience1.md)
- [SharedAudienceAccount](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceAccount.md)
- [SharedAudienceCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceCommon.md)
- [SharedAudienceResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceResponse.md)
- [SharedAudienceResponse1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceResponse1.md)
- [SharedAudienceResponseCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceResponseCommon.md)
- [SingleInterestTargetingOptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SingleInterestTargetingOptionResponse.md)
- [SummaryPin](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SummaryPin.md)
- [TargetingAdvertiserCountry](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingAdvertiserCountry.md)
- [TargetingOptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingOptionResponse.md)
- [TargetingSpec](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingSpec.md)
- [TargetingSpecAppType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingSpecAppType.md)
- [TargetingSpecSHOPPINGRETARGETING](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingSpecSHOPPINGRETARGETING.md)
- [TargetingTemplateAudienceSizing](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateAudienceSizing.md)
- [TargetingTemplateAudienceSizingReachEstimate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateAudienceSizingReachEstimate.md)
- [TargetingTemplateCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateCommon.md)
- [TargetingTemplateCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateCreate.md)
- [TargetingTemplateCreateAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateCreateAllOf.md)
- [TargetingTemplateGetResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateGetResponseData.md)
- [TargetingTemplateGetResponseData1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateGetResponseData1.md)
- [TargetingTemplateKeyword](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateKeyword.md)
- [TargetingTemplateResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateResponseData.md)
- [TargetingTemplateResponseData1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateResponseData1.md)
- [TargetingTemplateUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateUpdateRequest.md)
- [TargetingTypeFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTypeFilter.md)
- [TemplateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponse.md)
- [TemplateResponseDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRange.md)
- [TemplateResponseDateRangeAbsoluteDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRangeAbsoluteDateRange.md)
- [TemplateResponseDateRangeDynamicDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRangeDynamicDateRange.md)
- [TemplateResponseDateRangeRelativeDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRangeRelativeDateRange.md)
- [TermsOfService](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsOfService.md)
- [TermsSuggestedResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsSuggestedResponse.md)
- [TopPinsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopPinsAnalyticsResponse.md)
- [TopPinsAnalyticsResponseDateAvailability](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopPinsAnalyticsResponseDateAvailability.md)
- [TopPinsAnalyticsResponsePins](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopPinsAnalyticsResponsePins.md)
- [TopVideoPinsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopVideoPinsAnalyticsResponse.md)
- [TopVideoPinsAnalyticsResponsePins](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopVideoPinsAnalyticsResponsePins.md)
- [TrackingUrls](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrackingUrls.md)
- [TrendType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendType.md)
- [TrendingKeywordsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendingKeywordsResponse.md)
- [TrendingKeywordsResponseTrends](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendingKeywordsResponseTrends.md)
- [TrendsSupportedRegion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendsSupportedRegion.md)
- [UpdatableItemAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatableItemAttributes.md)
- [UpdateAssetGroupBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupBody.md)
- [UpdateAssetGroupBodyAssetGroupsToUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupBodyAssetGroupsToUpdate.md)
- [UpdateAssetGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupResponse.md)
- [UpdateAssetGroupResponseExceptions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupResponseExceptions.md)
- [UpdateInvitesResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateInvitesResultsResponseArray.md)
- [UpdateInvitesResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateInvitesResultsResponseArrayItems.md)
- [UpdateMaskBidOptionField](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMaskBidOptionField.md)
- [UpdateMaskFieldType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMaskFieldType.md)
- [UpdateMemberAssetAccessBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetAccessBody.md)
- [UpdateMemberAssetAccessBodyAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetAccessBodyAccesses.md)
- [UpdateMemberAssetsResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetsResultsResponseArray.md)
- [UpdateMemberAssetsResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetsResultsResponseArrayItems.md)
- [UpdateMemberBusinessRoleBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberBusinessRoleBody.md)
- [UpdateMemberResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberResult.md)
- [UpdateMemberResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberResultsResponseArray.md)
- [UpdatePartnerAssetAccessBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetAccessBody.md)
- [UpdatePartnerAssetAccessBodyAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetAccessBodyAccesses.md)
- [UpdatePartnerAssetsResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetsResult.md)
- [UpdatePartnerAssetsResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetsResultsResponseArray.md)
- [UpdatePartnerResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerResultsResponseArray.md)
- [UpdatePartnerResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerResultsResponseArrayItems.md)
- [UserBusinessRoleBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserBusinessRoleBinding.md)
- [UserFollowingFeedType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserFollowingFeedType.md)
- [UserListOperationType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserListOperationType.md)
- [UserListType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserListType.md)
- [UserSingleAssetBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserSingleAssetBinding.md)
- [UserSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserSummary.md)
- [UserWebsiteSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserWebsiteSummary.md)
- [UserWebsiteVerificationCode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserWebsiteVerificationCode.md)
- [UserWebsiteVerifyRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserWebsiteVerifyRequest.md)
- [UsersForIndividualAssetResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UsersForIndividualAssetResponse.md)
- [VideoMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/VideoMetadata.md)
## Documentation For Authorization
## basic
- **Type**: HTTP basic authentication
## client_credentials
- **Type**: OAuth
- **Flow**: application
- **Authorization URL**:
- **Scopes**:
- **ads:read**: See all of your advertising data, including ads, ad groups, campaigns etc.
- **ads:write**: Create, update, or delete ads, ad groups, campaigns etc.
- **billing:read**: See all of your billing data, billing profile, etc.
- **billing:write**: Create, update, or delete billing data, billing profiles, etc.
- **biz_access:read**: See business access data
- **biz_access:write**: Create, update, or delete business access data
- **boards:read**: See your public boards, including group boards you join
- **boards:read_secret**: See your secret boards
- **boards:write**: Create, update, or delete your public boards
- **boards:write_secret**: Create, update, or delete your secret boards
- **catalogs:read**: See all of your catalogs data
- **catalogs:write**: Create, update, or delete your catalogs data
- **pins:read**: See your public Pins
- **pins:read_secret**: See your secret Pins
- **pins:write**: Create, update, or delete your public Pins
- **pins:write_secret**: Create, update, or delete your secret Pins
- **user_accounts:read**: See your user accounts and followers
- **user_accounts:write**: Update your user accounts and followers
## conversion_token
- **Type**: Bearer authentication
## pinterest_oauth2
- **Type**: OAuth
- **Flow**: accessCode
- **Authorization URL**: https://www.pinterest.com/oauth/
- **Scopes**:
- **ads:read**: See all of your advertising data, including ads, ad groups, campaigns etc.
- **ads:write**: Create, update, or delete ads, ad groups, campaigns etc.
- **billing:read**: See all of your billing data, billing profile, etc.
- **billing:write**: Create, update, or delete billing data, billing profiles, etc.
- **biz_access:read**: See business access data
- **biz_access:write**: Create, update, or delete business access data
- **boards:read**: See your public boards, including group boards you join
- **boards:read_secret**: See your secret boards
- **boards:write**: Create, update, or delete your public boards
- **boards:write_secret**: Create, update, or delete your secret boards
- **catalogs:read**: See all of your catalogs data
- **catalogs:write**: Create, update, or delete your catalogs data
- **pins:read**: See your public Pins
- **pins:read_secret**: See your secret Pins
- **pins:write**: Create, update, or delete your public Pins
- **pins:write_secret**: Create, update, or delete your secret Pins
- **user_accounts:read**: See your user accounts and followers
- **user_accounts:write**: Update your user accounts and followers
## Author
pinterest-api@pinterest.com
## Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in openapi_generated.pinterest_client.apis and openapi_generated.pinterest_client.models may fail with a
RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
Solution 1:
Use specific imports for apis and models like:
- `from openapi_generated.pinterest_client.api.default_api import DefaultApi`
- `from openapi_generated.pinterest_client.model.pet import Pet`
Solution 2:
Before importing the package, adjust the maximum recursion limit as shown below:
```
import sys
sys.setrecursionlimit(1500)
import openapi_generated.pinterest_client
from openapi_generated.pinterest_client.apis import *
from openapi_generated.pinterest_client.models import *
```
Raw data
{
"_id": null,
"home_page": "https://github.com/pinterest/pinterest-python-generated-api-client",
"name": "Pinterest-Generated-Client",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "OpenAPI, OpenAPI-Generator, Pinterest REST API",
"author": "Pinterest, Inc.",
"author_email": "pinterest-api@pinterest.com",
"download_url": "https://files.pythonhosted.org/packages/ff/c8/94cced418fd7fe43ce846aea4a0635404e33a5def6448df763297776f5a0/pinterest_generated_client-0.1.9.tar.gz",
"platform": null,
"description": "## This client library is not design to be use directly, instead use ours [Pinterest Python SDK](https://github.com/pinterest/pinterest-python-sdk)\n\n# Pinterest_Generated_Client\nPinterest's REST API\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 5.14.0\n- Package version: 0.1.9\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\nFor more information, please visit [https://developers.pinterest.com/](https://developers.pinterest.com/)\n\n## Requirements.\n\nPython >=3.6\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n#### Using HTTPS\n\n```sh\npip install git+https://github.com/pinterest/pinterest-python-generated-api-client.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/pinterest/pinterest-python-generated-api-client.git`)\n\n#### Using SSH\n\n```sh\npip install git+ssh://github.com/pinterest/pinterest-python-generated-api-client.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/pinterest/pinterest-python-generated-api-client.git`)\n\nThen import the package:\n```python\nimport openapi_generated.pinterest_client\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport openapi_generated.pinterest_client\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport time\nimport openapi_generated.pinterest_client\nfrom pprint import pprint\nfrom openapi_generated.pinterest_client.api import ad_accounts_api\nfrom openapi_generated.pinterest_client.model.ad_account import AdAccount\nfrom openapi_generated.pinterest_client.model.ad_account_analytics_response import AdAccountAnalyticsResponse\nfrom openapi_generated.pinterest_client.model.ad_account_create_request import AdAccountCreateRequest\nfrom openapi_generated.pinterest_client.model.ads_analytics_create_async_request import AdsAnalyticsCreateAsyncRequest\nfrom openapi_generated.pinterest_client.model.ads_analytics_create_async_response import AdsAnalyticsCreateAsyncResponse\nfrom openapi_generated.pinterest_client.model.ads_analytics_get_async_response import AdsAnalyticsGetAsyncResponse\nfrom openapi_generated.pinterest_client.model.ads_analytics_targeting_type import AdsAnalyticsTargetingType\nfrom openapi_generated.pinterest_client.model.conversion_report_attribution_type import ConversionReportAttributionType\nfrom openapi_generated.pinterest_client.model.create_mmm_report_request import CreateMMMReportRequest\nfrom openapi_generated.pinterest_client.model.create_mmm_report_response import CreateMMMReportResponse\nfrom openapi_generated.pinterest_client.model.error import Error\nfrom openapi_generated.pinterest_client.model.get_mmm_report_response import GetMMMReportResponse\nfrom openapi_generated.pinterest_client.model.granularity import Granularity\nfrom openapi_generated.pinterest_client.model.metrics_response import MetricsResponse\nfrom openapi_generated.pinterest_client.model.paginated import Paginated\nfrom openapi_generated.pinterest_client.model.template_response import TemplateResponse\n# Defining the host is optional and defaults to https://api.pinterest.com/v5\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = openapi_generated.pinterest_client.Configuration(\n host = \"https://api.pinterest.com/v5\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure OAuth2 access token for authorization: pinterest_oauth2\nconfiguration = openapi_generated.pinterest_client.Configuration(\n host = \"https://api.pinterest.com/v5\"\n)\nconfiguration.access_token = 'YOUR_ACCESS_TOKEN'\n\n\n# Enter a context with an instance of the API client\nwith openapi_generated.pinterest_client.ApiClient(configuration) as api_client:\n # Create an instance of the API class\n api_instance = ad_accounts_api.AdAccountsApi(api_client)\n ad_account_id = \"4\" # str | Unique identifier of an ad account.\n start_date = dateutil_parser('1970-01-01').date() # date | Metric report start date (UTC). Format: YYYY-MM-DD. Cannot be more than 90 days back from today.\n end_date = dateutil_parser('1970-01-01').date() # date | Metric report end date (UTC). Format: YYYY-MM-DD. Cannot be more than 90 days past start_date.\n columns = [\n \"TOTAL_CONVERSIONS\",\n ] # [str] | Columns to retrieve, encoded as a comma-separated string. **NOTE**: Any metrics defined as MICRO_DOLLARS returns a value based on the advertiser profile's currency field. For USD,($1/1,000,000, or $0.000001 - one one-ten-thousandth of a cent). it's microdollars. Otherwise, it's in microunits of the advertiser's currency.<br/>For example, if the advertiser's currency is GBP (British pound sterling), all MICRO_DOLLARS fields will be in GBP microunits (1/1,000,000 British pound).<br/>If a column has no value, it may not be returned\n granularity = Granularity(\"DAY\") # Granularity | TOTAL - metrics are aggregated over the specified date range.<br> DAY - metrics are broken down daily.<br> HOUR - metrics are broken down hourly.<br>WEEKLY - metrics are broken down weekly.<br>MONTHLY - metrics are broken down monthly\n click_window_days = 1 # int | Number of days to use as the conversion attribution window for a pin click action. Applies to Pinterest Tag conversion metrics. Prior conversion tags use their defined attribution windows. If not specified, defaults to `30` days. (optional) (default to 30)\n engagement_window_days = 30 # int | Number of days to use as the conversion attribution window for an engagement action. Engagements include saves, closeups, link clicks, and carousel card swipes. Applies to Pinterest Tag conversion metrics. Prior conversion tags use their defined attribution windows. If not specified, defaults to `30` days. (optional) (default to 30)\n view_window_days = 1 # int | Number of days to use as the conversion attribution window for a view action. Applies to Pinterest Tag conversion metrics. Prior conversion tags use their defined attribution windows. If not specified, defaults to `1` day. (optional) (default to 1)\n conversion_report_time = \"TIME_OF_AD_ACTION\" # str | The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event. (optional) (default to \"TIME_OF_AD_ACTION\")\n\n try:\n # Get ad account analytics\n api_response = api_instance.ad_account_analytics(ad_account_id, start_date, end_date, columns, granularity, click_window_days=click_window_days, engagement_window_days=engagement_window_days, view_window_days=view_window_days, conversion_report_time=conversion_report_time)\n pprint(api_response)\n except openapi_generated.pinterest_client.ApiException as e:\n print(\"Exception when calling AdAccountsApi->ad_account_analytics: %s\\n\" % e)\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.pinterest.com/v5*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AdAccountsApi* | [**ad_account_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_account_analytics) | **GET** /ad_accounts/{ad_account_id}/analytics | Get ad account analytics\n*AdAccountsApi* | [**ad_account_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_account_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/targeting_analytics | Get targeting analytics for an ad account\n*AdAccountsApi* | [**ad_accounts_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_accounts_create) | **POST** /ad_accounts | Create ad account\n*AdAccountsApi* | [**ad_accounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_accounts_get) | **GET** /ad_accounts/{ad_account_id} | Get ad account\n*AdAccountsApi* | [**ad_accounts_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#ad_accounts_list) | **GET** /ad_accounts | List ad accounts\n*AdAccountsApi* | [**analytics_create_mmm_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_create_mmm_report) | **POST** /ad_accounts/{ad_account_id}/mmm_reports | Create a request for a Marketing Mix Modeling (MMM) report\n*AdAccountsApi* | [**analytics_create_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_create_report) | **POST** /ad_accounts/{ad_account_id}/reports | Create async request for an account analytics report\n*AdAccountsApi* | [**analytics_create_template_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_create_template_report) | **POST** /ad_accounts/{ad_account_id}/templates/{template_id}/reports | Create async request for an analytics report using a template\n*AdAccountsApi* | [**analytics_get_mmm_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_get_mmm_report) | **GET** /ad_accounts/{ad_account_id}/mmm_reports | Get advertiser Marketing Mix Modeling (MMM) report.\n*AdAccountsApi* | [**analytics_get_report**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#analytics_get_report) | **GET** /ad_accounts/{ad_account_id}/reports | Get the account analytics report created by the async call\n*AdAccountsApi* | [**sandbox_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#sandbox_delete) | **DELETE** /ad_accounts/{ad_account_id}/sandbox | Delete ads data for ad account in API Sandbox\n*AdAccountsApi* | [**templates_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsApi.md#templates_list) | **GET** /ad_accounts/{ad_account_id}/templates | List templates\n*AdGroupsApi* | [**ad_groups_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_analytics) | **GET** /ad_accounts/{ad_account_id}/ad_groups/analytics | Get ad group analytics\n*AdGroupsApi* | [**ad_groups_audience_sizing**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_audience_sizing) | **POST** /ad_accounts/{ad_account_id}/ad_groups/audience_sizing | Get audience sizing\n*AdGroupsApi* | [**ad_groups_bid_floor_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_bid_floor_get) | **POST** /ad_accounts/{ad_account_id}/bid_floor | Get bid floors\n*AdGroupsApi* | [**ad_groups_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_create) | **POST** /ad_accounts/{ad_account_id}/ad_groups | Create ad groups\n*AdGroupsApi* | [**ad_groups_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_get) | **GET** /ad_accounts/{ad_account_id}/ad_groups/{ad_group_id} | Get ad group\n*AdGroupsApi* | [**ad_groups_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_list) | **GET** /ad_accounts/{ad_account_id}/ad_groups | List ad groups\n*AdGroupsApi* | [**ad_groups_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/ad_groups/targeting_analytics | Get targeting analytics for ad groups\n*AdGroupsApi* | [**ad_groups_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsApi.md#ad_groups_update) | **PATCH** /ad_accounts/{ad_account_id}/ad_groups | Update ad groups\n*AdsApi* | [**ad_previews_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ad_previews_create) | **POST** /ad_accounts/{ad_account_id}/ad_previews | Create ad preview with pin or image\n*AdsApi* | [**ad_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ad_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/ads/targeting_analytics | Get targeting analytics for ads\n*AdsApi* | [**ads_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_analytics) | **GET** /ad_accounts/{ad_account_id}/ads/analytics | Get ad analytics\n*AdsApi* | [**ads_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_create) | **POST** /ad_accounts/{ad_account_id}/ads | Create ads\n*AdsApi* | [**ads_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_get) | **GET** /ad_accounts/{ad_account_id}/ads/{ad_id} | Get ad\n*AdsApi* | [**ads_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_list) | **GET** /ad_accounts/{ad_account_id}/ads | List ads\n*AdsApi* | [**ads_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsApi.md#ads_update) | **PATCH** /ad_accounts/{ad_account_id}/ads | Update ads\n*AdvancedAuctionApi* | [**advanced_auction_items_get_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionApi.md#advanced_auction_items_get_post) | **POST** /advanced_auction/items/get | Get item bid options (POST)\n*AdvancedAuctionApi* | [**advanced_auction_items_submit_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionApi.md#advanced_auction_items_submit_post) | **POST** /advanced_auction/items/submit | Operate on item level bid options\n*AudienceInsightsApi* | [**audience_insights_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightsApi.md#audience_insights_get) | **GET** /ad_accounts/{ad_account_id}/audience_insights | Get audience insights\n*AudienceInsightsApi* | [**audience_insights_scope_and_type_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightsApi.md#audience_insights_scope_and_type_get) | **GET** /ad_accounts/{ad_account_id}/insights/audiences | Get audience insights scope and type\n*AudienceSharingApi* | [**ad_accounts_audiences_shared_accounts_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#ad_accounts_audiences_shared_accounts_list) | **GET** /ad_accounts/{ad_account_id}/audiences/shared/accounts | List accounts with access to an audience owned by an ad account\n*AudienceSharingApi* | [**business_account_audiences_shared_accounts_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#business_account_audiences_shared_accounts_list) | **GET** /businesses/{business_id}/audiences/shared/accounts | List accounts with access to an audience owned by a business\n*AudienceSharingApi* | [**shared_audiences_for_business_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#shared_audiences_for_business_list) | **GET** /businesses/{business_id}/audiences | List received audiences for a business\n*AudienceSharingApi* | [**update_ad_account_to_ad_account_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_ad_account_to_ad_account_shared_audience) | **PATCH** /ad_accounts/{ad_account_id}/audiences/ad_accounts/shared | Update audience sharing between ad accounts\n*AudienceSharingApi* | [**update_ad_account_to_business_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_ad_account_to_business_shared_audience) | **PATCH** /ad_accounts/{ad_account_id}/audiences/businesses/shared | Update audience sharing from an ad account to businesses\n*AudienceSharingApi* | [**update_business_to_ad_account_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_business_to_ad_account_shared_audience) | **PATCH** /businesses/{business_id}/audiences/ad_accounts/shared | Update audience sharing from a business to ad accounts\n*AudienceSharingApi* | [**update_business_to_business_shared_audience**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingApi.md#update_business_to_business_shared_audience) | **PATCH** /businesses/{business_id}/audiences/businesses/shared | Update audience sharing between businesses\n*AudiencesApi* | [**audiences_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_create) | **POST** /ad_accounts/{ad_account_id}/audiences | Create audience\n*AudiencesApi* | [**audiences_create_custom**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_create_custom) | **POST** /ad_accounts/{ad_account_id}/audiences/custom | Create custom audience\n*AudiencesApi* | [**audiences_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_get) | **GET** /ad_accounts/{ad_account_id}/audiences/{audience_id} | Get audience\n*AudiencesApi* | [**audiences_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_list) | **GET** /ad_accounts/{ad_account_id}/audiences | List audiences\n*AudiencesApi* | [**audiences_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudiencesApi.md#audiences_update) | **PATCH** /ad_accounts/{ad_account_id}/audiences/{audience_id} | Update audience\n*BillingApi* | [**ads_credit_redeem**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ads_credit_redeem) | **POST** /ad_accounts/{ad_account_id}/ads_credit/redeem | Redeem ad credits\n*BillingApi* | [**ads_credits_discounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ads_credits_discounts_get) | **GET** /ad_accounts/{ad_account_id}/ads_credit/discounts | Get ads credit discounts\n*BillingApi* | [**billing_profiles_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#billing_profiles_get) | **GET** /ad_accounts/{ad_account_id}/billing_profiles | Get billing profiles\n*BillingApi* | [**ssio_accounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_accounts_get) | **GET** /ad_accounts/{ad_account_id}/ssio/accounts | Get Salesforce account details including bill-to information.\n*BillingApi* | [**ssio_insertion_order_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_order_create) | **POST** /ad_accounts/{ad_account_id}/ssio/insertion_orders | Create insertion order through SSIO.\n*BillingApi* | [**ssio_insertion_order_edit**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_order_edit) | **PATCH** /ad_accounts/{ad_account_id}/ssio/insertion_orders | Edit insertion order through SSIO.\n*BillingApi* | [**ssio_insertion_orders_status_get_by_ad_account**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_orders_status_get_by_ad_account) | **GET** /ad_accounts/{ad_account_id}/ssio/insertion_orders/status | Get insertion order status by ad account id.\n*BillingApi* | [**ssio_insertion_orders_status_get_by_pin_order_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_insertion_orders_status_get_by_pin_order_id) | **GET** /ad_accounts/{ad_account_id}/ssio/insertion_orders/{pin_order_id}/status | Get insertion order status by pin order id.\n*BillingApi* | [**ssio_order_lines_get_by_ad_account**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingApi.md#ssio_order_lines_get_by_ad_account) | **GET** /ad_accounts/{ad_account_id}/ssio/order_lines | Get Salesforce order lines by ad account id.\n*BoardsApi* | [**board_sections_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_create) | **POST** /boards/{board_id}/sections | Create board section\n*BoardsApi* | [**board_sections_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_delete) | **DELETE** /boards/{board_id}/sections/{section_id} | Delete board section\n*BoardsApi* | [**board_sections_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_list) | **GET** /boards/{board_id}/sections | List board sections\n*BoardsApi* | [**board_sections_list_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_list_pins) | **GET** /boards/{board_id}/sections/{section_id}/pins | List Pins on board section\n*BoardsApi* | [**board_sections_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#board_sections_update) | **PATCH** /boards/{board_id}/sections/{section_id} | Update board section\n*BoardsApi* | [**boards_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_create) | **POST** /boards | Create board\n*BoardsApi* | [**boards_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_delete) | **DELETE** /boards/{board_id} | Delete board\n*BoardsApi* | [**boards_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_get) | **GET** /boards/{board_id} | Get board\n*BoardsApi* | [**boards_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_list) | **GET** /boards | List boards\n*BoardsApi* | [**boards_list_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_list_pins) | **GET** /boards/{board_id}/pins | List Pins on board\n*BoardsApi* | [**boards_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardsApi.md#boards_update) | **PATCH** /boards/{board_id} | Update board\n*BulkApi* | [**bulk_download_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkApi.md#bulk_download_create) | **POST** /ad_accounts/{ad_account_id}/bulk/download | Get advertiser entities in bulk\n*BulkApi* | [**bulk_request_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkApi.md#bulk_request_get) | **GET** /ad_accounts/{ad_account_id}/bulk/{bulk_request_id} | Download advertiser entities in bulk\n*BulkApi* | [**bulk_upsert_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkApi.md#bulk_upsert_create) | **POST** /ad_accounts/{ad_account_id}/bulk/upsert | Create/update ad entities in bulk\n*BusinessAccessAssetsApi* | [**asset_group_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#asset_group_create) | **POST** /businesses/{business_id}/asset_groups | Create a new asset group.\n*BusinessAccessAssetsApi* | [**asset_group_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#asset_group_delete) | **DELETE** /businesses/{business_id}/asset_groups | Delete asset groups.\n*BusinessAccessAssetsApi* | [**asset_group_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#asset_group_update) | **PATCH** /businesses/{business_id}/asset_groups | Update asset groups.\n*BusinessAccessAssetsApi* | [**business_asset_members_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_asset_members_get) | **GET** /businesses/{business_id}/assets/{asset_id}/members | Get members with access to asset\n*BusinessAccessAssetsApi* | [**business_asset_partners_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_asset_partners_get) | **GET** /businesses/{business_id}/assets/{asset_id}/partners | Get partners with access to asset\n*BusinessAccessAssetsApi* | [**business_assets_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_assets_get) | **GET** /businesses/{business_id}/assets | List business assets\n*BusinessAccessAssetsApi* | [**business_member_assets_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_member_assets_get) | **GET** /businesses/{business_id}/members/{member_id}/assets | Get assets assigned to a member\n*BusinessAccessAssetsApi* | [**business_members_asset_access_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_members_asset_access_delete) | **DELETE** /businesses/{business_id}/members/assets/access | Delete member access to asset\n*BusinessAccessAssetsApi* | [**business_members_asset_access_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_members_asset_access_update) | **PATCH** /businesses/{business_id}/members/assets/access | Assign/Update member asset permissions\n*BusinessAccessAssetsApi* | [**business_partner_asset_access_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#business_partner_asset_access_get) | **GET** /businesses/{business_id}/partners/{partner_id}/assets | Get assets assigned to a partner or assets assigned by a partner\n*BusinessAccessAssetsApi* | [**delete_partner_asset_access_handler_impl**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#delete_partner_asset_access_handler_impl) | **DELETE** /businesses/{business_id}/partners/assets | Delete partner access to asset\n*BusinessAccessAssetsApi* | [**update_partner_asset_access_handler_impl**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessAssetsApi.md#update_partner_asset_access_handler_impl) | **PATCH** /businesses/{business_id}/partners/assets | Assign/Update partner asset permissions\n*BusinessAccessInviteApi* | [**asset_access_requests_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#asset_access_requests_create) | **POST** /businesses/{business_id}/requests/assets/access | Create a request to access an existing partner's assets.\n*BusinessAccessInviteApi* | [**cancel_invites_or_requests**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#cancel_invites_or_requests) | **DELETE** /businesses/{business_id}/invites | Cancel invites/requests\n*BusinessAccessInviteApi* | [**create_asset_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#create_asset_invites) | **POST** /businesses/{business_id}/invites/assets/access | Update invite/request with an asset permission\n*BusinessAccessInviteApi* | [**create_membership_or_partnership_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#create_membership_or_partnership_invites) | **POST** /businesses/{business_id}/invites | Create invites or requests\n*BusinessAccessInviteApi* | [**get_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#get_invites) | **GET** /businesses/{business_id}/invites | Get invites/requests\n*BusinessAccessInviteApi* | [**respond_business_access_invites**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessInviteApi.md#respond_business_access_invites) | **PATCH** /businesses/invites | Accept or decline an invite/request\n*BusinessAccessRelationshipsApi* | [**delete_business_membership**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#delete_business_membership) | **DELETE** /businesses/{business_id}/members | Terminate business memberships\n*BusinessAccessRelationshipsApi* | [**delete_business_partners**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#delete_business_partners) | **DELETE** /businesses/{business_id}/partners | Terminate business partnerships\n*BusinessAccessRelationshipsApi* | [**get_business_employers**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#get_business_employers) | **GET** /businesses/employers | List business employers for user\n*BusinessAccessRelationshipsApi* | [**get_business_members**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#get_business_members) | **GET** /businesses/{business_id}/members | Get business members\n*BusinessAccessRelationshipsApi* | [**get_business_partners**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#get_business_partners) | **GET** /businesses/{business_id}/partners | Get business partners\n*BusinessAccessRelationshipsApi* | [**update_business_memberships**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRelationshipsApi.md#update_business_memberships) | **PATCH** /businesses/{business_id}/members | Update member's business role\n*CampaignsApi* | [**campaign_targeting_analytics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaign_targeting_analytics_get) | **GET** /ad_accounts/{ad_account_id}/campaigns/targeting_analytics | Get targeting analytics for campaigns\n*CampaignsApi* | [**campaigns_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_analytics) | **GET** /ad_accounts/{ad_account_id}/campaigns/analytics | Get campaign analytics\n*CampaignsApi* | [**campaigns_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_create) | **POST** /ad_accounts/{ad_account_id}/campaigns | Create campaigns\n*CampaignsApi* | [**campaigns_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_get) | **GET** /ad_accounts/{ad_account_id}/campaigns/{campaign_id} | Get campaign\n*CampaignsApi* | [**campaigns_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_list) | **GET** /ad_accounts/{ad_account_id}/campaigns | List campaigns\n*CampaignsApi* | [**campaigns_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsApi.md#campaigns_update) | **PATCH** /ad_accounts/{ad_account_id}/campaigns | Update campaigns\n*CatalogsApi* | [**catalogs_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_create) | **POST** /catalogs | Create catalog\n*CatalogsApi* | [**catalogs_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_list) | **GET** /catalogs | List catalogs\n*CatalogsApi* | [**catalogs_product_group_pins_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_group_pins_list) | **GET** /catalogs/product_groups/{product_group_id}/products | List products by product group\n*CatalogsApi* | [**catalogs_product_groups_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_create) | **POST** /catalogs/product_groups | Create product group\n*CatalogsApi* | [**catalogs_product_groups_create_many**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_create_many) | **POST** /catalogs/product_groups/multiple | Create product groups\n*CatalogsApi* | [**catalogs_product_groups_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_delete) | **DELETE** /catalogs/product_groups/{product_group_id} | Delete product group\n*CatalogsApi* | [**catalogs_product_groups_delete_many**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_delete_many) | **DELETE** /catalogs/product_groups/multiple | Delete product groups\n*CatalogsApi* | [**catalogs_product_groups_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_get) | **GET** /catalogs/product_groups/{product_group_id} | Get product group\n*CatalogsApi* | [**catalogs_product_groups_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_list) | **GET** /catalogs/product_groups | List product groups\n*CatalogsApi* | [**catalogs_product_groups_product_counts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_product_counts_get) | **GET** /catalogs/product_groups/{product_group_id}/product_counts | Get product counts\n*CatalogsApi* | [**catalogs_product_groups_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#catalogs_product_groups_update) | **PATCH** /catalogs/product_groups/{product_group_id} | Update single product group\n*CatalogsApi* | [**feed_processing_results_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feed_processing_results_list) | **GET** /catalogs/feeds/{feed_id}/processing_results | List feed processing results\n*CatalogsApi* | [**feeds_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_create) | **POST** /catalogs/feeds | Create feed\n*CatalogsApi* | [**feeds_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_delete) | **DELETE** /catalogs/feeds/{feed_id} | Delete feed\n*CatalogsApi* | [**feeds_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_get) | **GET** /catalogs/feeds/{feed_id} | Get feed\n*CatalogsApi* | [**feeds_ingest**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_ingest) | **POST** /catalogs/feeds/{feed_id}/ingest | Ingest feed items\n*CatalogsApi* | [**feeds_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_list) | **GET** /catalogs/feeds | List feeds\n*CatalogsApi* | [**feeds_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#feeds_update) | **PATCH** /catalogs/feeds/{feed_id} | Update feed\n*CatalogsApi* | [**items_batch_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_batch_get) | **GET** /catalogs/items/batch/{batch_id} | Get item batch status\n*CatalogsApi* | [**items_batch_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_batch_post) | **POST** /catalogs/items/batch | Operate on item batch\n*CatalogsApi* | [**items_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_get) | **GET** /catalogs/items | Get catalogs items\n*CatalogsApi* | [**items_issues_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_issues_list) | **GET** /catalogs/processing_results/{processing_result_id}/item_issues | List item issues\n*CatalogsApi* | [**items_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#items_post) | **POST** /catalogs/items | Get catalogs items (POST)\n*CatalogsApi* | [**products_by_product_group_filter_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#products_by_product_group_filter_list) | **POST** /catalogs/products/get_by_product_group_filters | List products by filter\n*CatalogsApi* | [**reports_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#reports_create) | **POST** /catalogs/reports | Build catalogs report\n*CatalogsApi* | [**reports_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#reports_get) | **GET** /catalogs/reports | Get catalogs report\n*CatalogsApi* | [**reports_stats**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsApi.md#reports_stats) | **GET** /catalogs/reports/stats | List report stats\n*ConversionEventsApi* | [**events_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsApi.md#events_create) | **POST** /ad_accounts/{ad_account_id}/events | Send conversions\n*ConversionTagsApi* | [**conversion_tags_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#conversion_tags_create) | **POST** /ad_accounts/{ad_account_id}/conversion_tags | Create conversion tag\n*ConversionTagsApi* | [**conversion_tags_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#conversion_tags_get) | **GET** /ad_accounts/{ad_account_id}/conversion_tags/{conversion_tag_id} | Get conversion tag\n*ConversionTagsApi* | [**conversion_tags_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#conversion_tags_list) | **GET** /ad_accounts/{ad_account_id}/conversion_tags | Get conversion tags\n*ConversionTagsApi* | [**ocpm_eligible_conversion_tags_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#ocpm_eligible_conversion_tags_get) | **GET** /ad_accounts/{ad_account_id}/conversion_tags/ocpm_eligible | Get Ocpm eligible conversion tags\n*ConversionTagsApi* | [**page_visit_conversion_tags_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsApi.md#page_visit_conversion_tags_get) | **GET** /ad_accounts/{ad_account_id}/conversion_tags/page_visit | Get page visit conversion tags\n*CustomerListsApi* | [**customer_lists_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_create) | **POST** /ad_accounts/{ad_account_id}/customer_lists | Create customer lists\n*CustomerListsApi* | [**customer_lists_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_get) | **GET** /ad_accounts/{ad_account_id}/customer_lists/{customer_list_id} | Get customer list\n*CustomerListsApi* | [**customer_lists_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_list) | **GET** /ad_accounts/{ad_account_id}/customer_lists | Get customer lists\n*CustomerListsApi* | [**customer_lists_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListsApi.md#customer_lists_update) | **PATCH** /ad_accounts/{ad_account_id}/customer_lists/{customer_list_id} | Update customer list\n*IntegrationsApi* | [**integrations_commerce_del**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_del) | **DELETE** /integrations/commerce/{external_business_id} | Delete commerce integration\n*IntegrationsApi* | [**integrations_commerce_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_get) | **GET** /integrations/commerce/{external_business_id} | Get commerce integration\n*IntegrationsApi* | [**integrations_commerce_patch**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_patch) | **PATCH** /integrations/commerce/{external_business_id} | Update commerce integration\n*IntegrationsApi* | [**integrations_commerce_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_commerce_post) | **POST** /integrations/commerce | Create commerce integration\n*IntegrationsApi* | [**integrations_get_by_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_get_by_id) | **GET** /integrations/{id} | Get integration metadata\n*IntegrationsApi* | [**integrations_get_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_get_list) | **GET** /integrations | Get integration metadata list\n*IntegrationsApi* | [**integrations_logs_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationsApi.md#integrations_logs_post) | **POST** /integrations/logs | Receives batched logs from integration applications.\n*KeywordsApi* | [**country_keywords_metrics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#country_keywords_metrics_get) | **GET** /ad_accounts/{ad_account_id}/keywords/metrics | Get country's keyword metrics\n*KeywordsApi* | [**keywords_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#keywords_create) | **POST** /ad_accounts/{ad_account_id}/keywords | Create keywords\n*KeywordsApi* | [**keywords_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#keywords_get) | **GET** /ad_accounts/{ad_account_id}/keywords | Get keywords\n*KeywordsApi* | [**keywords_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#keywords_update) | **PATCH** /ad_accounts/{ad_account_id}/keywords | Update keywords\n*KeywordsApi* | [**trending_keywords_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsApi.md#trending_keywords_list) | **GET** /trends/keywords/{region}/top/{trend_type} | List trending keywords\n*LeadAdsApi* | [**ad_accounts_subscriptions_del_by_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_del_by_id) | **DELETE** /ad_accounts/{ad_account_id}/leads/subscriptions/{subscription_id} | Delete lead ads subscription\n*LeadAdsApi* | [**ad_accounts_subscriptions_get_by_id**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_get_by_id) | **GET** /ad_accounts/{ad_account_id}/leads/subscriptions/{subscription_id} | Get lead ads subscription\n*LeadAdsApi* | [**ad_accounts_subscriptions_get_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_get_list) | **GET** /ad_accounts/{ad_account_id}/leads/subscriptions | Get lead ads subscriptions\n*LeadAdsApi* | [**ad_accounts_subscriptions_post**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadAdsApi.md#ad_accounts_subscriptions_post) | **POST** /ad_accounts/{ad_account_id}/leads/subscriptions | Create lead ads subscription\n*LeadFormsApi* | [**lead_form_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_form_get) | **GET** /ad_accounts/{ad_account_id}/lead_forms/{lead_form_id} | Get lead form by id\n*LeadFormsApi* | [**lead_form_test_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_form_test_create) | **POST** /ad_accounts/{ad_account_id}/lead_forms/{lead_form_id}/test | Create lead form test data\n*LeadFormsApi* | [**lead_forms_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_forms_create) | **POST** /ad_accounts/{ad_account_id}/lead_forms | Create lead forms\n*LeadFormsApi* | [**lead_forms_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_forms_list) | **GET** /ad_accounts/{ad_account_id}/lead_forms | List lead forms\n*LeadFormsApi* | [**lead_forms_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormsApi.md#lead_forms_update) | **PATCH** /ad_accounts/{ad_account_id}/lead_forms | Update lead forms\n*LeadsExportApi* | [**leads_export_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportApi.md#leads_export_create) | **POST** /ad_accounts/{ad_account_id}/leads_export | Create a request to export leads collected from a lead ad\n*LeadsExportApi* | [**leads_export_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportApi.md#leads_export_get) | **GET** /ad_accounts/{ad_account_id}/leads_export/{leads_export_id} | Get the lead export from the lead export create call\n*MediaApi* | [**media_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaApi.md#media_create) | **POST** /media | Register media upload\n*MediaApi* | [**media_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaApi.md#media_get) | **GET** /media/{media_id} | Get media upload details\n*MediaApi* | [**media_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaApi.md#media_list) | **GET** /media | List media uploads\n*OauthApi* | [**oauth_token**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthApi.md#oauth_token) | **POST** /oauth/token | Generate OAuth access token\n*OrderLinesApi* | [**order_lines_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinesApi.md#order_lines_get) | **GET** /ad_accounts/{ad_account_id}/order_lines/{order_line_id} | Get order line\n*OrderLinesApi* | [**order_lines_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinesApi.md#order_lines_list) | **GET** /ad_accounts/{ad_account_id}/order_lines | Get order lines\n*PinsApi* | [**multi_pins_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#multi_pins_analytics) | **GET** /pins/analytics | Get multiple Pin analytics\n*PinsApi* | [**pins_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_analytics) | **GET** /pins/{pin_id}/analytics | Get Pin analytics\n*PinsApi* | [**pins_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_create) | **POST** /pins | Create Pin\n*PinsApi* | [**pins_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_delete) | **DELETE** /pins/{pin_id} | Delete Pin\n*PinsApi* | [**pins_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_get) | **GET** /pins/{pin_id} | Get Pin\n*PinsApi* | [**pins_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_list) | **GET** /pins | List Pins\n*PinsApi* | [**pins_save**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_save) | **POST** /pins/{pin_id}/save | Save Pin\n*PinsApi* | [**pins_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinsApi.md#pins_update) | **PATCH** /pins/{pin_id} | Update Pin\n*ProductGroupPromotionsApi* | [**product_group_promotions_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_create) | **POST** /ad_accounts/{ad_account_id}/product_group_promotions | Create product group promotions\n*ProductGroupPromotionsApi* | [**product_group_promotions_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_get) | **GET** /ad_accounts/{ad_account_id}/product_group_promotions/{product_group_promotion_id} | Get a product group promotion by id\n*ProductGroupPromotionsApi* | [**product_group_promotions_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_list) | **GET** /ad_accounts/{ad_account_id}/product_group_promotions | Get product group promotions\n*ProductGroupPromotionsApi* | [**product_group_promotions_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_group_promotions_update) | **PATCH** /ad_accounts/{ad_account_id}/product_group_promotions | Update product group promotions\n*ProductGroupPromotionsApi* | [**product_groups_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionsApi.md#product_groups_analytics) | **GET** /ad_accounts/{ad_account_id}/product_groups/analytics | Get product group analytics\n*ResourcesApi* | [**ad_account_countries_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#ad_account_countries_get) | **GET** /resources/ad_account_countries | Get ad accounts countries\n*ResourcesApi* | [**delivery_metrics_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#delivery_metrics_get) | **GET** /resources/delivery_metrics | Get available metrics' definitions\n*ResourcesApi* | [**interest_targeting_options_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#interest_targeting_options_get) | **GET** /resources/targeting/interests/{interest_id} | Get interest details\n*ResourcesApi* | [**lead_form_questions_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#lead_form_questions_get) | **GET** /resources/lead_form_questions | Get lead form questions\n*ResourcesApi* | [**metrics_ready_state_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#metrics_ready_state_get) | **GET** /resources/metrics_ready_state | Get metrics ready state\n*ResourcesApi* | [**targeting_options_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ResourcesApi.md#targeting_options_get) | **GET** /resources/targeting/{targeting_type} | Get targeting options\n*SearchApi* | [**search_partner_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SearchApi.md#search_partner_pins) | **GET** /search/partner/pins | Search pins by a given search term\n*SearchApi* | [**search_user_boards_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SearchApi.md#search_user_boards_get) | **GET** /search/boards | Search user's boards\n*SearchApi* | [**search_user_pins_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SearchApi.md#search_user_pins_list) | **GET** /search/pins | Search user's Pins\n*TargetingTemplateApi* | [**targeting_template_create**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateApi.md#targeting_template_create) | **POST** /ad_accounts/{ad_account_id}/targeting_templates | Create targeting templates\n*TargetingTemplateApi* | [**targeting_template_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateApi.md#targeting_template_list) | **GET** /ad_accounts/{ad_account_id}/targeting_templates | List targeting templates\n*TargetingTemplateApi* | [**targeting_template_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateApi.md#targeting_template_update) | **PATCH** /ad_accounts/{ad_account_id}/targeting_templates | Update targeting templates\n*TermsApi* | [**terms_related_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsApi.md#terms_related_list) | **GET** /terms/related | List related terms\n*TermsApi* | [**terms_suggested_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsApi.md#terms_suggested_list) | **GET** /terms/suggested | List suggested terms\n*TermsOfServiceApi* | [**terms_of_service_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsOfServiceApi.md#terms_of_service_get) | **GET** /ad_accounts/{ad_account_id}/terms_of_service | Get terms of service\n*UserAccountApi* | [**boards_user_follows_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#boards_user_follows_list) | **GET** /user_account/following/boards | List following boards\n*UserAccountApi* | [**follow_user_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#follow_user_update) | **POST** /user_account/following/{username} | Follow user\n*UserAccountApi* | [**followers_list**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#followers_list) | **GET** /user_account/followers | List followers\n*UserAccountApi* | [**linked_business_accounts_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#linked_business_accounts_get) | **GET** /user_account/businesses | List linked businesses\n*UserAccountApi* | [**unverify_website_delete**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#unverify_website_delete) | **DELETE** /user_account/websites | Unverify website\n*UserAccountApi* | [**user_account_analytics**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_analytics) | **GET** /user_account/analytics | Get user account analytics\n*UserAccountApi* | [**user_account_analytics_top_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_analytics_top_pins) | **GET** /user_account/analytics/top_pins | Get user account top pins analytics\n*UserAccountApi* | [**user_account_analytics_top_video_pins**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_analytics_top_video_pins) | **GET** /user_account/analytics/top_video_pins | Get user account top video pins analytics\n*UserAccountApi* | [**user_account_followed_interests**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_followed_interests) | **GET** /users/{username}/interests/follow | List following interests\n*UserAccountApi* | [**user_account_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_account_get) | **GET** /user_account | Get user account\n*UserAccountApi* | [**user_following_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_following_get) | **GET** /user_account/following | List following\n*UserAccountApi* | [**user_websites_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#user_websites_get) | **GET** /user_account/websites | Get user websites\n*UserAccountApi* | [**verify_website_update**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#verify_website_update) | **POST** /user_account/websites | Verify website\n*UserAccountApi* | [**website_verification_get**](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserAccountApi.md#website_verification_get) | **GET** /user_account/websites/verification | Get user verification code for website claiming\n\n\n## Documentation For Models\n\n - [Account](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Account.md)\n - [ActionType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ActionType.md)\n - [AdAccount](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccount.md)\n - [AdAccountAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountAnalyticsResponse.md)\n - [AdAccountCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateRequest.md)\n - [AdAccountCreateSubscriptionRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateSubscriptionRequest.md)\n - [AdAccountCreateSubscriptionRequestPartnerMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateSubscriptionRequestPartnerMetadata.md)\n - [AdAccountCreateSubscriptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountCreateSubscriptionResponse.md)\n - [AdAccountGetSubscriptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountGetSubscriptionResponse.md)\n - [AdAccountGetSubscriptionResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountGetSubscriptionResponseAllOf.md)\n - [AdAccountGetSubscriptionResponseAllOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountGetSubscriptionResponseAllOf1.md)\n - [AdAccountOwner](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountOwner.md)\n - [AdAccountsCountryResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsCountryResponse.md)\n - [AdAccountsCountryResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdAccountsCountryResponseData.md)\n - [AdArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdArrayResponse.md)\n - [AdArrayResponseElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdArrayResponseElement.md)\n - [AdCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdCommon.md)\n - [AdCountry](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdCountry.md)\n - [AdCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdCreateRequest.md)\n - [AdGroupArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupArrayResponse.md)\n - [AdGroupArrayResponseElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupArrayResponseElement.md)\n - [AdGroupAudienceSizingRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupAudienceSizingRequest.md)\n - [AdGroupAudienceSizingRequestKeywords](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupAudienceSizingRequestKeywords.md)\n - [AdGroupAudienceSizingResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupAudienceSizingResponse.md)\n - [AdGroupCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupCommon.md)\n - [AdGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupCreateRequest.md)\n - [AdGroupCreateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupCreateRequestAllOf.md)\n - [AdGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupResponse.md)\n - [AdGroupResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupResponseAllOf.md)\n - [AdGroupSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupSummaryStatus.md)\n - [AdGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupUpdateRequest.md)\n - [AdGroupUpdateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupUpdateRequestAllOf.md)\n - [AdGroupsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdGroupsAnalyticsResponse.md)\n - [AdPinId](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPinId.md)\n - [AdPreviewCreateFromImage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewCreateFromImage.md)\n - [AdPreviewCreateFromPin](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewCreateFromPin.md)\n - [AdPreviewRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewRequest.md)\n - [AdPreviewURLResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdPreviewURLResponse.md)\n - [AdResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdResponse.md)\n - [AdResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdResponseAllOf.md)\n - [AdUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdUpdateRequest.md)\n - [AdUpdateRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdUpdateRequest1.md)\n - [AdsAnalyticsAdTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsAdTargetingType.md)\n - [AdsAnalyticsCampaignTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCampaignTargetingType.md)\n - [AdsAnalyticsCreateAsyncRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncRequest.md)\n - [AdsAnalyticsCreateAsyncRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncRequestAllOf.md)\n - [AdsAnalyticsCreateAsyncRequestAllOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncRequestAllOf1.md)\n - [AdsAnalyticsCreateAsyncResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsCreateAsyncResponse.md)\n - [AdsAnalyticsFilterColumn](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsFilterColumn.md)\n - [AdsAnalyticsFilterOperator](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsFilterOperator.md)\n - [AdsAnalyticsGetAsyncResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsGetAsyncResponse.md)\n - [AdsAnalyticsMetricsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsMetricsFilter.md)\n - [AdsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsResponse.md)\n - [AdsAnalyticsTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsAnalyticsTargetingType.md)\n - [AdsCreditDiscountsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsCreditDiscountsResponse.md)\n - [AdsCreditRedeemRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsCreditRedeemRequest.md)\n - [AdsCreditRedeemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdsCreditRedeemResponse.md)\n - [AdvancedAuctionBidOptions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionBidOptions.md)\n - [AdvancedAuctionItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItem.md)\n - [AdvancedAuctionItemAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemAllOf.md)\n - [AdvancedAuctionItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItems.md)\n - [AdvancedAuctionItemsGetRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsGetRecord.md)\n - [AdvancedAuctionItemsGetRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsGetRequest.md)\n - [AdvancedAuctionItemsSubmitDeleteRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitDeleteRecord.md)\n - [AdvancedAuctionItemsSubmitRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitRecord.md)\n - [AdvancedAuctionItemsSubmitRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitRequest.md)\n - [AdvancedAuctionItemsSubmitUpsertRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitUpsertRecord.md)\n - [AdvancedAuctionItemsSubmitUpsertRecordAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionItemsSubmitUpsertRecordAllOf.md)\n - [AdvancedAuctionKey](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionKey.md)\n - [AdvancedAuctionOperation](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionOperation.md)\n - [AdvancedAuctionOperationError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionOperationError.md)\n - [AdvancedAuctionProcessedItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionProcessedItem.md)\n - [AdvancedAuctionProcessedItemAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionProcessedItemAllOf.md)\n - [AdvancedAuctionProcessedItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AdvancedAuctionProcessedItems.md)\n - [AgeBucketList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AgeBucketList.md)\n - [AnalyticsDailyMetrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AnalyticsDailyMetrics.md)\n - [AnalyticsMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AnalyticsMetricsResponse.md)\n - [AnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AnalyticsResponse.md)\n - [AppTypeMultipliers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AppTypeMultipliers.md)\n - [AssetGroupBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetGroupBinding.md)\n - [AssetGroupType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetGroupType.md)\n - [AssetGroupTypes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetGroupTypes.md)\n - [AssetIdPermissions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetIdPermissions.md)\n - [AssetIdToPermissions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AssetIdToPermissions.md)\n - [Audience](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Audience.md)\n - [AudienceAccountType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceAccountType.md)\n - [AudienceCategory](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCategory.md)\n - [AudienceCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCommon.md)\n - [AudienceCreateCustomRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateCustomRequest.md)\n - [AudienceCreateCustomRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateCustomRequest1.md)\n - [AudienceCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateRequest.md)\n - [AudienceCreateRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceCreateRequest1.md)\n - [AudienceDataParty](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDataParty.md)\n - [AudienceDefinition](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDefinition.md)\n - [AudienceDefinitionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDefinitionResponse.md)\n - [AudienceDemographicValue](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDemographicValue.md)\n - [AudienceDemographics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceDemographics.md)\n - [AudienceInsightCategoryArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightCategoryArrayResponse.md)\n - [AudienceInsightCategoryCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightCategoryCommon.md)\n - [AudienceInsightType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightType.md)\n - [AudienceInsightsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceInsightsResponse.md)\n - [AudienceRule](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceRule.md)\n - [AudienceShareType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceShareType.md)\n - [AudienceSharingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSharingType.md)\n - [AudienceSubcategory](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceSubcategory.md)\n - [AudienceType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceType.md)\n - [AudienceUpdateOperationType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceUpdateOperationType.md)\n - [AudienceUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceUpdateRequest.md)\n - [AudienceUpdateRequest1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AudienceUpdateRequest1.md)\n - [AuthRespondInvitesBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AuthRespondInvitesBody.md)\n - [AuthRespondInvitesBodyAction](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AuthRespondInvitesBodyAction.md)\n - [AuthRespondInvitesBodyInvites](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AuthRespondInvitesBodyInvites.md)\n - [AvailabilityFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/AvailabilityFilter.md)\n - [BaseInviteDataResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BaseInviteDataResponse.md)\n - [BaseInviteDataResponseInviteData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BaseInviteDataResponseInviteData.md)\n - [BatchOperation](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BatchOperation.md)\n - [BatchOperationStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BatchOperationStatus.md)\n - [BidFloor](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BidFloor.md)\n - [BidFloorRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BidFloorRequest.md)\n - [BidFloorSpec](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BidFloorSpec.md)\n - [BillingProfilesResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BillingProfilesResponse.md)\n - [Board](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Board.md)\n - [BoardMedia](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardMedia.md)\n - [BoardOwner](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardOwner.md)\n - [BoardSection](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardSection.md)\n - [BoardUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BoardUpdate.md)\n - [BookClosedResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BookClosedResponse.md)\n - [BrandFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BrandFilter.md)\n - [BudgetType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BudgetType.md)\n - [BulkDownloadRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkDownloadRequest.md)\n - [BulkDownloadRequestCampaignFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkDownloadRequestCampaignFilter.md)\n - [BulkDownloadResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkDownloadResponse.md)\n - [BulkEntityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkEntityType.md)\n - [BulkOutputFormat](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkOutputFormat.md)\n - [BulkPinAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkPinAnalyticsResponse.md)\n - [BulkReportingJobStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkReportingJobStatus.md)\n - [BulkUpsertRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertRequest.md)\n - [BulkUpsertRequestCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertRequestCreate.md)\n - [BulkUpsertRequestUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertRequestUpdate.md)\n - [BulkUpsertResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertResponse.md)\n - [BulkUpsertStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertStatus.md)\n - [BulkUpsertStatusResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BulkUpsertStatusResponse.md)\n - [BusinessAccessError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessError.md)\n - [BusinessAccessRole](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessRole.md)\n - [BusinessAccessUserSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessAccessUserSummary.md)\n - [BusinessMemberAssetsSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessMemberAssetsSummary.md)\n - [BusinessMemberAssetsSummaryAdAccounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessMemberAssetsSummaryAdAccounts.md)\n - [BusinessMemberAssetsSummaryProfiles](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessMemberAssetsSummaryProfiles.md)\n - [BusinessRole](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessRole.md)\n - [BusinessRoleCheckMode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessRoleCheckMode.md)\n - [BusinessRoleForMembers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessRoleForMembers.md)\n - [BusinessSharedAudience](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudience.md)\n - [BusinessSharedAudience1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudience1.md)\n - [BusinessSharedAudienceResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudienceResponse.md)\n - [BusinessSharedAudienceResponse1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessSharedAudienceResponse1.md)\n - [BusinessesBusinessIdMembersAssetsAccessAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/BusinessesBusinessIdMembersAssetsAccessAccesses.md)\n - [CampaignCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCommon.md)\n - [CampaignCreateCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateCommon.md)\n - [CampaignCreateCommonAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateCommonAllOf.md)\n - [CampaignCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateRequest.md)\n - [CampaignCreateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateRequestAllOf.md)\n - [CampaignCreateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponse.md)\n - [CampaignCreateResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponseData.md)\n - [CampaignCreateResponseDataAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponseDataAllOf.md)\n - [CampaignCreateResponseItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignCreateResponseItem.md)\n - [CampaignId](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignId.md)\n - [CampaignResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignResponse.md)\n - [CampaignResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignResponseAllOf.md)\n - [CampaignSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignSummaryStatus.md)\n - [CampaignUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignUpdateRequest.md)\n - [CampaignUpdateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignUpdateRequestAllOf.md)\n - [CampaignUpdateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignUpdateResponse.md)\n - [CampaignsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CampaignsAnalyticsResponse.md)\n - [CancelInvitesBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CancelInvitesBody.md)\n - [Catalog](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Catalog.md)\n - [CatalogAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogAllOf.md)\n - [CatalogsCreateCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateCreativeAssetsItem.md)\n - [CatalogsCreateHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateHotelItem.md)\n - [CatalogsCreateReportResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateReportResponse.md)\n - [CatalogsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateRequest.md)\n - [CatalogsCreateRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreateRetailItem.md)\n - [CatalogsCreativeAssetsAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsAttributes.md)\n - [CatalogsCreativeAssetsAttributesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsAttributesAllOf.md)\n - [CatalogsCreativeAssetsBatchItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsBatchItem.md)\n - [CatalogsCreativeAssetsBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsBatchRequest.md)\n - [CatalogsCreativeAssetsFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsFeed.md)\n - [CatalogsCreativeAssetsFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsFeedsCreateRequest.md)\n - [CatalogsCreativeAssetsFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsFeedsUpdateRequest.md)\n - [CatalogsCreativeAssetsItemErrorResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemErrorResponse.md)\n - [CatalogsCreativeAssetsItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemResponse.md)\n - [CatalogsCreativeAssetsItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemsBatch.md)\n - [CatalogsCreativeAssetsItemsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemsFilter.md)\n - [CatalogsCreativeAssetsItemsPostFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsItemsPostFilter.md)\n - [CatalogsCreativeAssetsListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsListProductsByCatalogBasedFilterRequest.md)\n - [CatalogsCreativeAssetsProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProduct.md)\n - [CatalogsCreativeAssetsProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroup.md)\n - [CatalogsCreativeAssetsProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupCreateRequest.md)\n - [CatalogsCreativeAssetsProductGroupFilterKeys](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFilterKeys.md)\n - [CatalogsCreativeAssetsProductGroupFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFilters.md)\n - [CatalogsCreativeAssetsProductGroupFiltersAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFiltersAllOf.md)\n - [CatalogsCreativeAssetsProductGroupFiltersAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupFiltersAnyOf.md)\n - [CatalogsCreativeAssetsProductGroupProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupProductCounts.md)\n - [CatalogsCreativeAssetsProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductGroupUpdateRequest.md)\n - [CatalogsCreativeAssetsProductMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsCreativeAssetsProductMetadata.md)\n - [CatalogsDbItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDbItem.md)\n - [CatalogsDeleteCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDeleteCreativeAssetsItem.md)\n - [CatalogsDeleteHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDeleteHotelItem.md)\n - [CatalogsDeleteRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsDeleteRetailItem.md)\n - [CatalogsFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeed.md)\n - [CatalogsFeedCredentials](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedCredentials.md)\n - [CatalogsFeedIngestion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestion.md)\n - [CatalogsFeedIngestionDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionDetails.md)\n - [CatalogsFeedIngestionErrors](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionErrors.md)\n - [CatalogsFeedIngestionInfo](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionInfo.md)\n - [CatalogsFeedIngestionWarnings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedIngestionWarnings.md)\n - [CatalogsFeedProcessingResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingResult.md)\n - [CatalogsFeedProcessingResultFields](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingResultFields.md)\n - [CatalogsFeedProcessingSchedule](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingSchedule.md)\n - [CatalogsFeedProcessingStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProcessingStatus.md)\n - [CatalogsFeedProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedProductCounts.md)\n - [CatalogsFeedValidationDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedValidationDetails.md)\n - [CatalogsFeedValidationErrors](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedValidationErrors.md)\n - [CatalogsFeedValidationWarnings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedValidationWarnings.md)\n - [CatalogsFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedsCreateRequest.md)\n - [CatalogsFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFeedsUpdateRequest.md)\n - [CatalogsFormat](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsFormat.md)\n - [CatalogsHotelAddress](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAddress.md)\n - [CatalogsHotelAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAttributes.md)\n - [CatalogsHotelAttributesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAttributesAllOf.md)\n - [CatalogsHotelAttributesAllOfMainImage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelAttributesAllOfMainImage.md)\n - [CatalogsHotelBatchItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelBatchItem.md)\n - [CatalogsHotelBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelBatchRequest.md)\n - [CatalogsHotelFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelFeed.md)\n - [CatalogsHotelFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelFeedsCreateRequest.md)\n - [CatalogsHotelFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelFeedsUpdateRequest.md)\n - [CatalogsHotelGuestRatings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelGuestRatings.md)\n - [CatalogsHotelItemErrorResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemErrorResponse.md)\n - [CatalogsHotelItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemResponse.md)\n - [CatalogsHotelItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemsBatch.md)\n - [CatalogsHotelItemsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemsFilter.md)\n - [CatalogsHotelItemsPostFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelItemsPostFilter.md)\n - [CatalogsHotelListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelListProductsByCatalogBasedFilterRequest.md)\n - [CatalogsHotelProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProduct.md)\n - [CatalogsHotelProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroup.md)\n - [CatalogsHotelProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupCreateRequest.md)\n - [CatalogsHotelProductGroupFilterKeys](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFilterKeys.md)\n - [CatalogsHotelProductGroupFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFilters.md)\n - [CatalogsHotelProductGroupFiltersAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFiltersAllOf.md)\n - [CatalogsHotelProductGroupFiltersAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupFiltersAnyOf.md)\n - [CatalogsHotelProductGroupProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupProductCounts.md)\n - [CatalogsHotelProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductGroupUpdateRequest.md)\n - [CatalogsHotelProductMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelProductMetadata.md)\n - [CatalogsHotelReportParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsHotelReportParameters.md)\n - [CatalogsItemValidationDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationDetails.md)\n - [CatalogsItemValidationErrors](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationErrors.md)\n - [CatalogsItemValidationIssue](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationIssue.md)\n - [CatalogsItemValidationIssues](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationIssues.md)\n - [CatalogsItemValidationWarnings](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemValidationWarnings.md)\n - [CatalogsItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItems.md)\n - [CatalogsItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsBatch.md)\n - [CatalogsItemsBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsBatchRequest.md)\n - [CatalogsItemsCreateBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsCreateBatchRequest.md)\n - [CatalogsItemsDeleteBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsDeleteBatchRequest.md)\n - [CatalogsItemsDeleteDiscontinuedBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsDeleteDiscontinuedBatchRequest.md)\n - [CatalogsItemsFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsFilters.md)\n - [CatalogsItemsPostFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsPostFilters.md)\n - [CatalogsItemsRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsRequest.md)\n - [CatalogsItemsUpdateBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsUpdateBatchRequest.md)\n - [CatalogsItemsUpsertBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsItemsUpsertBatchRequest.md)\n - [CatalogsListProductsByFeedBasedFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsListProductsByFeedBasedFilter.md)\n - [CatalogsListProductsByFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsListProductsByFilterRequest.md)\n - [CatalogsLocale](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsLocale.md)\n - [CatalogsProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProduct.md)\n - [CatalogsProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupCreateRequest.md)\n - [CatalogsProductGroupCurrencyCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupCurrencyCriteria.md)\n - [CatalogsProductGroupFilterKeys](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFilterKeys.md)\n - [CatalogsProductGroupFilters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFilters.md)\n - [CatalogsProductGroupFiltersAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersAllOf.md)\n - [CatalogsProductGroupFiltersAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersAnyOf.md)\n - [CatalogsProductGroupFiltersRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersRequest.md)\n - [CatalogsProductGroupFiltersRequestAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersRequestAnyOf.md)\n - [CatalogsProductGroupFiltersRequestAnyOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupFiltersRequestAnyOf1.md)\n - [CatalogsProductGroupMultipleCountriesCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleCountriesCriteria.md)\n - [CatalogsProductGroupMultipleGenderCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleGenderCriteria.md)\n - [CatalogsProductGroupMultipleMediaTypesCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleMediaTypesCriteria.md)\n - [CatalogsProductGroupMultipleStringCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleStringCriteria.md)\n - [CatalogsProductGroupMultipleStringListCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupMultipleStringListCriteria.md)\n - [CatalogsProductGroupPricingCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupPricingCriteria.md)\n - [CatalogsProductGroupPricingCurrencyCriteria](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupPricingCurrencyCriteria.md)\n - [CatalogsProductGroupProductCountsVertical](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupProductCountsVertical.md)\n - [CatalogsProductGroupStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupStatus.md)\n - [CatalogsProductGroupType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupType.md)\n - [CatalogsProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsProductGroupUpdateRequest.md)\n - [CatalogsReport](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReport.md)\n - [CatalogsReportDistributionIssueFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportDistributionIssueFilter.md)\n - [CatalogsReportDistributionStats](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportDistributionStats.md)\n - [CatalogsReportFeedIngestionFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportFeedIngestionFilter.md)\n - [CatalogsReportFeedIngestionStats](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportFeedIngestionStats.md)\n - [CatalogsReportParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportParameters.md)\n - [CatalogsReportStats](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsReportStats.md)\n - [CatalogsRetailBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailBatchRequest.md)\n - [CatalogsRetailFeed](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailFeed.md)\n - [CatalogsRetailFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailFeedsCreateRequest.md)\n - [CatalogsRetailFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailFeedsUpdateRequest.md)\n - [CatalogsRetailItemErrorResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemErrorResponse.md)\n - [CatalogsRetailItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemResponse.md)\n - [CatalogsRetailItemsBatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemsBatch.md)\n - [CatalogsRetailItemsFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemsFilter.md)\n - [CatalogsRetailItemsPostFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailItemsPostFilter.md)\n - [CatalogsRetailListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailListProductsByCatalogBasedFilterRequest.md)\n - [CatalogsRetailProduct](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProduct.md)\n - [CatalogsRetailProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroup.md)\n - [CatalogsRetailProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroupCreateRequest.md)\n - [CatalogsRetailProductGroupProductCounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroupProductCounts.md)\n - [CatalogsRetailProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductGroupUpdateRequest.md)\n - [CatalogsRetailProductMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailProductMetadata.md)\n - [CatalogsRetailReportParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsRetailReportParameters.md)\n - [CatalogsStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsStatus.md)\n - [CatalogsType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsType.md)\n - [CatalogsUpdatableCreativeAssetsAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdatableCreativeAssetsAttributes.md)\n - [CatalogsUpdatableHotelAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdatableHotelAttributes.md)\n - [CatalogsUpdateCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdateCreativeAssetsItem.md)\n - [CatalogsUpdateHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdateHotelItem.md)\n - [CatalogsUpdateRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpdateRetailItem.md)\n - [CatalogsUpsertCreativeAssetsItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpsertCreativeAssetsItem.md)\n - [CatalogsUpsertHotelItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpsertHotelItem.md)\n - [CatalogsUpsertRetailItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsUpsertRetailItem.md)\n - [CatalogsVerticalBatchRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalBatchRequest.md)\n - [CatalogsVerticalFeedsCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalFeedsCreateRequest.md)\n - [CatalogsVerticalFeedsUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalFeedsUpdateRequest.md)\n - [CatalogsVerticalProductGroup](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalProductGroup.md)\n - [CatalogsVerticalProductGroupCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalProductGroupCreateRequest.md)\n - [CatalogsVerticalProductGroupUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalProductGroupUpdateRequest.md)\n - [CatalogsVerticalsListProductsByCatalogBasedFilterRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CatalogsVerticalsListProductsByCatalogBasedFilterRequest.md)\n - [ConditionFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConditionFilter.md)\n - [ConversionApiResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionApiResponse.md)\n - [ConversionApiResponseEvents](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionApiResponseEvents.md)\n - [ConversionAttributionWindowDays](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionAttributionWindowDays.md)\n - [ConversionEventResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventResponse.md)\n - [ConversionEvents](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEvents.md)\n - [ConversionEventsCustomData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsCustomData.md)\n - [ConversionEventsCustomDataContents](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsCustomDataContents.md)\n - [ConversionEventsData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsData.md)\n - [ConversionEventsUserData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserData.md)\n - [ConversionEventsUserDataAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserDataAnyOf.md)\n - [ConversionEventsUserDataAnyOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserDataAnyOf1.md)\n - [ConversionEventsUserDataAnyOf2](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionEventsUserDataAnyOf2.md)\n - [ConversionReportAttributionType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionReportAttributionType.md)\n - [ConversionReportTimeType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionReportTimeType.md)\n - [ConversionTagCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagCommon.md)\n - [ConversionTagConfigs](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagConfigs.md)\n - [ConversionTagCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagCreate.md)\n - [ConversionTagListResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagListResponse.md)\n - [ConversionTagResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagResponse.md)\n - [ConversionTagType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagType.md)\n - [ConversionTagsOcpmEligibleResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ConversionTagsOcpmEligibleResponse.md)\n - [Country](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Country.md)\n - [CountryFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CountryFilter.md)\n - [CreateAssetAccessRequestBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestBody.md)\n - [CreateAssetAccessRequestBodyAssetRequests](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestBodyAssetRequests.md)\n - [CreateAssetAccessRequestErrorMessage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestErrorMessage.md)\n - [CreateAssetAccessRequestResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetAccessRequestResponse.md)\n - [CreateAssetGroupBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetGroupBody.md)\n - [CreateAssetGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetGroupResponse.md)\n - [CreateAssetInvitesRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetInvitesRequest.md)\n - [CreateAssetInvitesRequestItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateAssetInvitesRequestItem.md)\n - [CreateInvitesResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateInvitesResultsResponseArray.md)\n - [CreateInvitesResultsResponseArrayInvite](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateInvitesResultsResponseArrayInvite.md)\n - [CreateInvitesResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateInvitesResultsResponseArrayItems.md)\n - [CreateMMMReportRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportRequest.md)\n - [CreateMMMReportRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportRequestAllOf.md)\n - [CreateMMMReportResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportResponse.md)\n - [CreateMMMReportResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMMMReportResponseData.md)\n - [CreateMembershipOrPartnershipInvitesBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreateMembershipOrPartnershipInvitesBody.md)\n - [CreativeAssetsIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeAssetsIdFilter.md)\n - [CreativeAssetsProcessingRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeAssetsProcessingRecord.md)\n - [CreativeAssetsVisibilityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeAssetsVisibilityType.md)\n - [CreativeType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CreativeType.md)\n - [Currency](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Currency.md)\n - [CurrencyFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CurrencyFilter.md)\n - [CustomLabel0Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel0Filter.md)\n - [CustomLabel1Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel1Filter.md)\n - [CustomLabel2Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel2Filter.md)\n - [CustomLabel3Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel3Filter.md)\n - [CustomLabel4Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomLabel4Filter.md)\n - [CustomerList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerList.md)\n - [CustomerListRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListRequest.md)\n - [CustomerListUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/CustomerListUpdateRequest.md)\n - [DataOutputFormat](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DataOutputFormat.md)\n - [DataStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DataStatus.md)\n - [DeleteAssetGroupBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteAssetGroupBody.md)\n - [DeleteAssetGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteAssetGroupResponse.md)\n - [DeleteAssetGroupResponseExceptions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteAssetGroupResponseExceptions.md)\n - [DeleteInvitesResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteInvitesResultsResponseArray.md)\n - [DeleteInvitesResultsResponseArrayException](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteInvitesResultsResponseArrayException.md)\n - [DeleteInvitesResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteInvitesResultsResponseArrayItems.md)\n - [DeleteMemberAccessResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteMemberAccessResult.md)\n - [DeleteMemberAccessResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeleteMemberAccessResultsResponseArray.md)\n - [DeletePartnerAssetAccessBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetAccessBody.md)\n - [DeletePartnerAssetAccessBodyAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetAccessBodyAccesses.md)\n - [DeletePartnerAssetsResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetsResult.md)\n - [DeletePartnerAssetsResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnerAssetsResultsResponseArray.md)\n - [DeletePartnersRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnersRequest.md)\n - [DeletePartnersResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletePartnersResponse.md)\n - [DeletedMembersResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeletedMembersResponse.md)\n - [DeliveryMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeliveryMetricsResponse.md)\n - [DeliveryMetricsResponseItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DeliveryMetricsResponseItems.md)\n - [DetailedError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/DetailedError.md)\n - [EnhancedMatchStatusType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/EnhancedMatchStatusType.md)\n - [EntityStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/EntityStatus.md)\n - [Error](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Error.md)\n - [Exception](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Exception.md)\n - [FeedFields](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FeedFields.md)\n - [FeedFields1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FeedFields1.md)\n - [FeedFields2](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FeedFields2.md)\n - [FollowUserRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/FollowUserRequest.md)\n - [Gender](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Gender.md)\n - [GenderFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GenderFilter.md)\n - [GenderList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GenderList.md)\n - [GetAudiencesOrderBy](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetAudiencesOrderBy.md)\n - [GetBusinessAssetTypeResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetBusinessAssetTypeResponse.md)\n - [GetBusinessAssetsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetBusinessAssetsResponse.md)\n - [GetMMMReportResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetMMMReportResponse.md)\n - [GetMMMReportResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetMMMReportResponseData.md)\n - [GetPartnerAssetsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GetPartnerAssetsResponse.md)\n - [GoogleProductCategory0Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory0Filter.md)\n - [GoogleProductCategory1Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory1Filter.md)\n - [GoogleProductCategory2Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory2Filter.md)\n - [GoogleProductCategory3Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory3Filter.md)\n - [GoogleProductCategory4Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory4Filter.md)\n - [GoogleProductCategory5Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory5Filter.md)\n - [GoogleProductCategory6Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GoogleProductCategory6Filter.md)\n - [Granularity](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Granularity.md)\n - [GridClickType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/GridClickType.md)\n - [HotelIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/HotelIdFilter.md)\n - [HotelProcessingRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/HotelProcessingRecord.md)\n - [ImageDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ImageDetails.md)\n - [ImageMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ImageMetadata.md)\n - [ImageMetadataImages](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ImageMetadataImages.md)\n - [InlineObject](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InlineObject.md)\n - [InlineObject1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InlineObject1.md)\n - [IntegrationLog](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLog.md)\n - [IntegrationLogClientError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogClientError.md)\n - [IntegrationLogClientRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogClientRequest.md)\n - [IntegrationLogsInvalidLogResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsInvalidLogResponse.md)\n - [IntegrationLogsInvalidLogResponseRejectedLogs](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsInvalidLogResponseRejectedLogs.md)\n - [IntegrationLogsRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsRequest.md)\n - [IntegrationLogsSuccessResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationLogsSuccessResponse.md)\n - [IntegrationMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationMetadata.md)\n - [IntegrationRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationRecord.md)\n - [IntegrationRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationRequest.md)\n - [IntegrationRequestPatch](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/IntegrationRequestPatch.md)\n - [Interest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Interest.md)\n - [InviteAssetsSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteAssetsSummary.md)\n - [InviteAssetsSummaryAdAccounts](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteAssetsSummaryAdAccounts.md)\n - [InviteAssetsSummaryProfiles](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteAssetsSummaryProfiles.md)\n - [InviteBusinessRoleBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteBusinessRoleBinding.md)\n - [InviteExceptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteExceptionResponse.md)\n - [InviteResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteResponse.md)\n - [InviteStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteStatus.md)\n - [InviteType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/InviteType.md)\n - [ItemAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributes.md)\n - [ItemAttributesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributesAllOf.md)\n - [ItemAttributesRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributesRequest.md)\n - [ItemAttributesRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemAttributesRequestAllOf.md)\n - [ItemBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemBatchRecord.md)\n - [ItemCreateBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemCreateBatchRecord.md)\n - [ItemDeleteBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemDeleteBatchRecord.md)\n - [ItemDeleteDiscontinuedBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemDeleteDiscontinuedBatchRecord.md)\n - [ItemGroupIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemGroupIdFilter.md)\n - [ItemIdFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemIdFilter.md)\n - [ItemProcessingRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemProcessingRecord.md)\n - [ItemProcessingStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemProcessingStatus.md)\n - [ItemResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemResponse.md)\n - [ItemResponseAnyOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemResponseAnyOf.md)\n - [ItemResponseAnyOf1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemResponseAnyOf1.md)\n - [ItemUpdateBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemUpdateBatchRecord.md)\n - [ItemUpsertBatchRecord](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemUpsertBatchRecord.md)\n - [ItemValidationEvent](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ItemValidationEvent.md)\n - [Keyword](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Keyword.md)\n - [KeywordAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordAllOf.md)\n - [KeywordError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordError.md)\n - [KeywordList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordList.md)\n - [KeywordMetrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordMetrics.md)\n - [KeywordMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordMetricsResponse.md)\n - [KeywordUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordUpdate.md)\n - [KeywordUpdateBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordUpdateBody.md)\n - [KeywordsCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsCommon.md)\n - [KeywordsMetricsArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsMetricsArrayResponse.md)\n - [KeywordsRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsRequest.md)\n - [KeywordsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/KeywordsResponse.md)\n - [L1InterestList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/L1InterestList.md)\n - [Language](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Language.md)\n - [LeadFormArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormArrayResponse.md)\n - [LeadFormArrayResponseItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormArrayResponseItems.md)\n - [LeadFormCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormCommon.md)\n - [LeadFormCommonPolicyLinks](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormCommonPolicyLinks.md)\n - [LeadFormCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormCreateRequest.md)\n - [LeadFormQuestion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormQuestion.md)\n - [LeadFormQuestionFieldType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormQuestionFieldType.md)\n - [LeadFormQuestionType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormQuestionType.md)\n - [LeadFormResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormResponse.md)\n - [LeadFormResponseAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormResponseAllOf.md)\n - [LeadFormStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormStatus.md)\n - [LeadFormTestRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormTestRequest.md)\n - [LeadFormTestResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormTestResponse.md)\n - [LeadFormUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormUpdateRequest.md)\n - [LeadFormUpdateRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadFormUpdateRequestAllOf.md)\n - [LeadsExportCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportCreateRequest.md)\n - [LeadsExportCreateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportCreateResponse.md)\n - [LeadsExportResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportResponseData.md)\n - [LeadsExportStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LeadsExportStatus.md)\n - [LineItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LineItem.md)\n - [LinkedBusiness](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/LinkedBusiness.md)\n - [MMMReportingColumn](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MMMReportingColumn.md)\n - [MMMReportingTargetingType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MMMReportingTargetingType.md)\n - [MatchType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MatchType.md)\n - [MatchTypeResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MatchTypeResponse.md)\n - [MaxPriceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MaxPriceFilter.md)\n - [MediaType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaType.md)\n - [MediaTypeFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaTypeFilter.md)\n - [MediaUpload](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUpload.md)\n - [MediaUploadAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadAllOf.md)\n - [MediaUploadAllOfUploadParameters](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadAllOfUploadParameters.md)\n - [MediaUploadDetails](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadDetails.md)\n - [MediaUploadRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadRequest.md)\n - [MediaUploadStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadStatus.md)\n - [MediaUploadType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MediaUploadType.md)\n - [MemberBusinessRole](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MemberBusinessRole.md)\n - [MembersToDeleteBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MembersToDeleteBody.md)\n - [MembersToDeleteBodyMembers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MembersToDeleteBodyMembers.md)\n - [Metrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Metrics.md)\n - [MetricsReportingLevel](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MetricsReportingLevel.md)\n - [MetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MetricsResponse.md)\n - [MinPriceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/MinPriceFilter.md)\n - [NonNullableCatalogsCurrency](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NonNullableCatalogsCurrency.md)\n - [NonNullableProductAvailabilityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NonNullableProductAvailabilityType.md)\n - [NullableCatalogsItemFieldType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NullableCatalogsItemFieldType.md)\n - [NullableCurrency](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/NullableCurrency.md)\n - [OauthAccessTokenRequestClientCredentials](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestClientCredentials.md)\n - [OauthAccessTokenRequestClientCredentialsAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestClientCredentialsAllOf.md)\n - [OauthAccessTokenRequestCode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestCode.md)\n - [OauthAccessTokenRequestCodeAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestCodeAllOf.md)\n - [OauthAccessTokenRequestRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestRefresh.md)\n - [OauthAccessTokenRequestRefreshAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenRequestRefreshAllOf.md)\n - [OauthAccessTokenResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponse.md)\n - [OauthAccessTokenResponseClientCredentials](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseClientCredentials.md)\n - [OauthAccessTokenResponseCode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseCode.md)\n - [OauthAccessTokenResponseCodeAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseCodeAllOf.md)\n - [OauthAccessTokenResponseEverlastingRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseEverlastingRefresh.md)\n - [OauthAccessTokenResponseEverlastingRefreshAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseEverlastingRefreshAllOf.md)\n - [OauthAccessTokenResponseIntegrationRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseIntegrationRefresh.md)\n - [OauthAccessTokenResponseRefresh](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseRefresh.md)\n - [OauthAccessTokenResponseRefreshAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OauthAccessTokenResponseRefreshAllOf.md)\n - [ObjectiveType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ObjectiveType.md)\n - [OperationType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OperationType.md)\n - [OptimizationGoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadata.md)\n - [OptimizationGoalMetadataConversionTagV3GoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataConversionTagV3GoalMetadata.md)\n - [OptimizationGoalMetadataConversionTagV3GoalMetadataAttributionWindows](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataConversionTagV3GoalMetadataAttributionWindows.md)\n - [OptimizationGoalMetadataFrequencyGoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataFrequencyGoalMetadata.md)\n - [OptimizationGoalMetadataScrollupGoalMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OptimizationGoalMetadataScrollupGoalMetadata.md)\n - [OrderLine](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLine.md)\n - [OrderLineAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineAllOf.md)\n - [OrderLineError](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineError.md)\n - [OrderLinePaidType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinePaidType.md)\n - [OrderLineResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineResponse.md)\n - [OrderLineSingleResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineSingleResponse.md)\n - [OrderLineStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLineStatus.md)\n - [OrderLines](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLines.md)\n - [OrderLinesArrayResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/OrderLinesArrayResponse.md)\n - [PacingDeliveryType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PacingDeliveryType.md)\n - [Paginated](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Paginated.md)\n - [PartnerType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PartnerType.md)\n - [Permissions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Permissions.md)\n - [PermissionsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PermissionsResponse.md)\n - [PermissionsWithOwner](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PermissionsWithOwner.md)\n - [Pin](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Pin.md)\n - [PinAnalyticsMetricsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinAnalyticsMetricsResponse.md)\n - [PinAnalyticsMetricsResponseDailyMetrics](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinAnalyticsMetricsResponseDailyMetrics.md)\n - [PinAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinAnalyticsResponse.md)\n - [PinCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinCreate.md)\n - [PinMedia](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMedia.md)\n - [PinMediaMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaMetadata.md)\n - [PinMediaSource](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSource.md)\n - [PinMediaSourceImageBase64](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImageBase64.md)\n - [PinMediaSourceImageURL](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImageURL.md)\n - [PinMediaSourceImagesBase64](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesBase64.md)\n - [PinMediaSourceImagesBase64Items](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesBase64Items.md)\n - [PinMediaSourceImagesURL](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesURL.md)\n - [PinMediaSourceImagesURLItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceImagesURLItems.md)\n - [PinMediaSourcePinURL](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourcePinURL.md)\n - [PinMediaSourceVideoID](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaSourceVideoID.md)\n - [PinMediaWithImage](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImage.md)\n - [PinMediaWithImageAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImageAllOf.md)\n - [PinMediaWithImageAndVideo](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImageAndVideo.md)\n - [PinMediaWithImageAndVideoAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImageAndVideoAllOf.md)\n - [PinMediaWithImages](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImages.md)\n - [PinMediaWithImagesAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithImagesAllOf.md)\n - [PinMediaWithVideo](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideo.md)\n - [PinMediaWithVideoAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideoAllOf.md)\n - [PinMediaWithVideos](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideos.md)\n - [PinMediaWithVideosAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinMediaWithVideosAllOf.md)\n - [PinPromotionSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinPromotionSummaryStatus.md)\n - [PinUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinUpdate.md)\n - [PinUpdateCarouselSlots](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinUpdateCarouselSlots.md)\n - [PinterestTagEventData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PinterestTagEventData.md)\n - [PlacementGroupType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PlacementGroupType.md)\n - [PlacementMultipliers](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PlacementMultipliers.md)\n - [PriceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/PriceFilter.md)\n - [ProductAvailabilityType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductAvailabilityType.md)\n - [ProductGroupAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupAnalyticsResponse.md)\n - [ProductGroupPromotion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotion.md)\n - [ProductGroupPromotionCreateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionCreateRequest.md)\n - [ProductGroupPromotionCreateRequestElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionCreateRequestElement.md)\n - [ProductGroupPromotionCreateRequestElementAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionCreateRequestElementAllOf.md)\n - [ProductGroupPromotionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionResponse.md)\n - [ProductGroupPromotionResponseElement](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionResponseElement.md)\n - [ProductGroupPromotionResponseItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionResponseItem.md)\n - [ProductGroupPromotionUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupPromotionUpdateRequest.md)\n - [ProductGroupReferenceFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupReferenceFilter.md)\n - [ProductGroupSummaryStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductGroupSummaryStatus.md)\n - [ProductType0Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType0Filter.md)\n - [ProductType1Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType1Filter.md)\n - [ProductType2Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType2Filter.md)\n - [ProductType3Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType3Filter.md)\n - [ProductType4Filter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ProductType4Filter.md)\n - [QuizPinData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinData.md)\n - [QuizPinOption](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinOption.md)\n - [QuizPinQuestion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinQuestion.md)\n - [QuizPinResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/QuizPinResult.md)\n - [RelatedTerms](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RelatedTerms.md)\n - [RelatedTermsRelatedTermsList](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RelatedTermsRelatedTermsList.md)\n - [ReportingColumnAsync](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/ReportingColumnAsync.md)\n - [RespondToInvitesResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RespondToInvitesResponseArray.md)\n - [RespondToInvitesResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/RespondToInvitesResponseArrayItems.md)\n - [Role](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/Role.md)\n - [SSIOAccountAddress](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountAddress.md)\n - [SSIOAccountItem](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountItem.md)\n - [SSIOAccountPMPName](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountPMPName.md)\n - [SSIOAccountResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOAccountResponse.md)\n - [SSIOCreateInsertionOrderRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOCreateInsertionOrderRequest.md)\n - [SSIOCreateInsertionOrderRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOCreateInsertionOrderRequestAllOf.md)\n - [SSIOCreateInsertionOrderResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOCreateInsertionOrderResponse.md)\n - [SSIOEditInsertionOrderRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOEditInsertionOrderRequest.md)\n - [SSIOEditInsertionOrderRequestAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOEditInsertionOrderRequestAllOf.md)\n - [SSIOEditInsertionOrderResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOEditInsertionOrderResponse.md)\n - [SSIOInsertionOrderCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOInsertionOrderCommon.md)\n - [SSIOInsertionOrderStatus](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOInsertionOrderStatus.md)\n - [SSIOInsertionOrderStatusResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOInsertionOrderStatusResponse.md)\n - [SSIOOrderLine](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SSIOOrderLine.md)\n - [SharedAudience](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudience.md)\n - [SharedAudience1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudience1.md)\n - [SharedAudienceAccount](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceAccount.md)\n - [SharedAudienceCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceCommon.md)\n - [SharedAudienceResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceResponse.md)\n - [SharedAudienceResponse1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceResponse1.md)\n - [SharedAudienceResponseCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SharedAudienceResponseCommon.md)\n - [SingleInterestTargetingOptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SingleInterestTargetingOptionResponse.md)\n - [SummaryPin](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/SummaryPin.md)\n - [TargetingAdvertiserCountry](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingAdvertiserCountry.md)\n - [TargetingOptionResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingOptionResponse.md)\n - [TargetingSpec](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingSpec.md)\n - [TargetingSpecAppType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingSpecAppType.md)\n - [TargetingSpecSHOPPINGRETARGETING](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingSpecSHOPPINGRETARGETING.md)\n - [TargetingTemplateAudienceSizing](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateAudienceSizing.md)\n - [TargetingTemplateAudienceSizingReachEstimate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateAudienceSizingReachEstimate.md)\n - [TargetingTemplateCommon](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateCommon.md)\n - [TargetingTemplateCreate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateCreate.md)\n - [TargetingTemplateCreateAllOf](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateCreateAllOf.md)\n - [TargetingTemplateGetResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateGetResponseData.md)\n - [TargetingTemplateGetResponseData1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateGetResponseData1.md)\n - [TargetingTemplateKeyword](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateKeyword.md)\n - [TargetingTemplateResponseData](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateResponseData.md)\n - [TargetingTemplateResponseData1](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateResponseData1.md)\n - [TargetingTemplateUpdateRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTemplateUpdateRequest.md)\n - [TargetingTypeFilter](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TargetingTypeFilter.md)\n - [TemplateResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponse.md)\n - [TemplateResponseDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRange.md)\n - [TemplateResponseDateRangeAbsoluteDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRangeAbsoluteDateRange.md)\n - [TemplateResponseDateRangeDynamicDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRangeDynamicDateRange.md)\n - [TemplateResponseDateRangeRelativeDateRange](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TemplateResponseDateRangeRelativeDateRange.md)\n - [TermsOfService](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsOfService.md)\n - [TermsSuggestedResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TermsSuggestedResponse.md)\n - [TopPinsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopPinsAnalyticsResponse.md)\n - [TopPinsAnalyticsResponseDateAvailability](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopPinsAnalyticsResponseDateAvailability.md)\n - [TopPinsAnalyticsResponsePins](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopPinsAnalyticsResponsePins.md)\n - [TopVideoPinsAnalyticsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopVideoPinsAnalyticsResponse.md)\n - [TopVideoPinsAnalyticsResponsePins](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TopVideoPinsAnalyticsResponsePins.md)\n - [TrackingUrls](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrackingUrls.md)\n - [TrendType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendType.md)\n - [TrendingKeywordsResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendingKeywordsResponse.md)\n - [TrendingKeywordsResponseTrends](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendingKeywordsResponseTrends.md)\n - [TrendsSupportedRegion](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/TrendsSupportedRegion.md)\n - [UpdatableItemAttributes](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatableItemAttributes.md)\n - [UpdateAssetGroupBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupBody.md)\n - [UpdateAssetGroupBodyAssetGroupsToUpdate](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupBodyAssetGroupsToUpdate.md)\n - [UpdateAssetGroupResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupResponse.md)\n - [UpdateAssetGroupResponseExceptions](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateAssetGroupResponseExceptions.md)\n - [UpdateInvitesResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateInvitesResultsResponseArray.md)\n - [UpdateInvitesResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateInvitesResultsResponseArrayItems.md)\n - [UpdateMaskBidOptionField](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMaskBidOptionField.md)\n - [UpdateMaskFieldType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMaskFieldType.md)\n - [UpdateMemberAssetAccessBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetAccessBody.md)\n - [UpdateMemberAssetAccessBodyAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetAccessBodyAccesses.md)\n - [UpdateMemberAssetsResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetsResultsResponseArray.md)\n - [UpdateMemberAssetsResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberAssetsResultsResponseArrayItems.md)\n - [UpdateMemberBusinessRoleBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberBusinessRoleBody.md)\n - [UpdateMemberResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberResult.md)\n - [UpdateMemberResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdateMemberResultsResponseArray.md)\n - [UpdatePartnerAssetAccessBody](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetAccessBody.md)\n - [UpdatePartnerAssetAccessBodyAccesses](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetAccessBodyAccesses.md)\n - [UpdatePartnerAssetsResult](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetsResult.md)\n - [UpdatePartnerAssetsResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerAssetsResultsResponseArray.md)\n - [UpdatePartnerResultsResponseArray](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerResultsResponseArray.md)\n - [UpdatePartnerResultsResponseArrayItems](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UpdatePartnerResultsResponseArrayItems.md)\n - [UserBusinessRoleBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserBusinessRoleBinding.md)\n - [UserFollowingFeedType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserFollowingFeedType.md)\n - [UserListOperationType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserListOperationType.md)\n - [UserListType](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserListType.md)\n - [UserSingleAssetBinding](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserSingleAssetBinding.md)\n - [UserSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserSummary.md)\n - [UserWebsiteSummary](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserWebsiteSummary.md)\n - [UserWebsiteVerificationCode](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserWebsiteVerificationCode.md)\n - [UserWebsiteVerifyRequest](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UserWebsiteVerifyRequest.md)\n - [UsersForIndividualAssetResponse](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/UsersForIndividualAssetResponse.md)\n - [VideoMetadata](https://github.com/pinterest/pinterest-python-generated-api-client/blob/main/docs/VideoMetadata.md)\n\n\n## Documentation For Authorization\n\n\n## basic\n\n- **Type**: HTTP basic authentication\n\n\n## client_credentials\n\n- **Type**: OAuth\n- **Flow**: application\n- **Authorization URL**: \n- **Scopes**: \n - **ads:read**: See all of your advertising data, including ads, ad groups, campaigns etc.\n - **ads:write**: Create, update, or delete ads, ad groups, campaigns etc.\n - **billing:read**: See all of your billing data, billing profile, etc.\n - **billing:write**: Create, update, or delete billing data, billing profiles, etc.\n - **biz_access:read**: See business access data\n - **biz_access:write**: Create, update, or delete business access data\n - **boards:read**: See your public boards, including group boards you join\n - **boards:read_secret**: See your secret boards\n - **boards:write**: Create, update, or delete your public boards\n - **boards:write_secret**: Create, update, or delete your secret boards\n - **catalogs:read**: See all of your catalogs data\n - **catalogs:write**: Create, update, or delete your catalogs data\n - **pins:read**: See your public Pins\n - **pins:read_secret**: See your secret Pins\n - **pins:write**: Create, update, or delete your public Pins\n - **pins:write_secret**: Create, update, or delete your secret Pins\n - **user_accounts:read**: See your user accounts and followers\n - **user_accounts:write**: Update your user accounts and followers\n\n\n## conversion_token\n\n- **Type**: Bearer authentication\n\n\n## pinterest_oauth2\n\n- **Type**: OAuth\n- **Flow**: accessCode\n- **Authorization URL**: https://www.pinterest.com/oauth/\n- **Scopes**: \n - **ads:read**: See all of your advertising data, including ads, ad groups, campaigns etc.\n - **ads:write**: Create, update, or delete ads, ad groups, campaigns etc.\n - **billing:read**: See all of your billing data, billing profile, etc.\n - **billing:write**: Create, update, or delete billing data, billing profiles, etc.\n - **biz_access:read**: See business access data\n - **biz_access:write**: Create, update, or delete business access data\n - **boards:read**: See your public boards, including group boards you join\n - **boards:read_secret**: See your secret boards\n - **boards:write**: Create, update, or delete your public boards\n - **boards:write_secret**: Create, update, or delete your secret boards\n - **catalogs:read**: See all of your catalogs data\n - **catalogs:write**: Create, update, or delete your catalogs data\n - **pins:read**: See your public Pins\n - **pins:read_secret**: See your secret Pins\n - **pins:write**: Create, update, or delete your public Pins\n - **pins:write_secret**: Create, update, or delete your secret Pins\n - **user_accounts:read**: See your user accounts and followers\n - **user_accounts:write**: Update your user accounts and followers\n\n\n## Author\n\npinterest-api@pinterest.com\n\n\n## Notes for Large OpenAPI documents\nIf the OpenAPI document is large, imports in openapi_generated.pinterest_client.apis and openapi_generated.pinterest_client.models may fail with a\nRecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:\n\nSolution 1:\nUse specific imports for apis and models like:\n- `from openapi_generated.pinterest_client.api.default_api import DefaultApi`\n- `from openapi_generated.pinterest_client.model.pet import Pet`\n\nSolution 2:\nBefore importing the package, adjust the maximum recursion limit as shown below:\n```\nimport sys\nsys.setrecursionlimit(1500)\nimport openapi_generated.pinterest_client\nfrom openapi_generated.pinterest_client.apis import *\nfrom openapi_generated.pinterest_client.models import *\n```\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Pinterest REST API",
"version": "0.1.9",
"project_urls": {
"Homepage": "https://github.com/pinterest/pinterest-python-generated-api-client"
},
"split_keywords": [
"openapi",
" openapi-generator",
" pinterest rest api"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1e266ac25ffe7e4f842c2b3224372a28d5a625ff8a1246678caf8acd65de976a",
"md5": "1e6dae6a89a691c9566faad251c1aa81",
"sha256": "f3dfa6e974b8c4189cf5b74ba41022ffa16b59ad0e5befda6ef8cfe5bf15965d"
},
"downloads": -1,
"filename": "Pinterest_Generated_Client-0.1.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1e6dae6a89a691c9566faad251c1aa81",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 2356487,
"upload_time": "2024-08-13T05:11:13",
"upload_time_iso_8601": "2024-08-13T05:11:13.973677Z",
"url": "https://files.pythonhosted.org/packages/1e/26/6ac25ffe7e4f842c2b3224372a28d5a625ff8a1246678caf8acd65de976a/Pinterest_Generated_Client-0.1.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ffc894cced418fd7fe43ce846aea4a0635404e33a5def6448df763297776f5a0",
"md5": "341895d980caa75237d15af0970b0489",
"sha256": "b49530c834dcd1440afcfdd25d08d83e87fefddd87ea536ef8be8579966cacd9"
},
"downloads": -1,
"filename": "pinterest_generated_client-0.1.9.tar.gz",
"has_sig": false,
"md5_digest": "341895d980caa75237d15af0970b0489",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 598339,
"upload_time": "2024-08-13T05:11:16",
"upload_time_iso_8601": "2024-08-13T05:11:16.148553Z",
"url": "https://files.pythonhosted.org/packages/ff/c8/94cced418fd7fe43ce846aea4a0635404e33a5def6448df763297776f5a0/pinterest_generated_client-0.1.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-13 05:11:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pinterest",
"github_project": "pinterest-python-generated-api-client",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"tox": true,
"lcname": "pinterest-generated-client"
}