{"id":18930067,"url":"https://github.com/labd/akeneo-python-sdk","last_synced_at":"2026-03-16T19:30:15.987Z","repository":{"id":162045265,"uuid":"623354579","full_name":"labd/akeneo-python-sdk","owner":"labd","description":"Python SDK for the Akeneo PIM","archived":false,"fork":false,"pushed_at":"2024-06-10T09:37:17.000Z","size":1480,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-12-31T19:29:53.535Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/labd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-04T07:52:33.000Z","updated_at":"2024-06-10T09:37:20.000Z","dependencies_parsed_at":"2024-01-10T14:19:00.798Z","dependency_job_id":"a11a8c5f-e6c7-4197-aa6e-f03a80ca6a5d","html_url":"https://github.com/labd/akeneo-python-sdk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labd%2Fakeneo-python-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labd%2Fakeneo-python-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labd%2Fakeneo-python-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labd%2Fakeneo-python-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/labd","download_url":"https://codeload.github.com/labd/akeneo-python-sdk/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239927825,"owners_count":19719835,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T11:36:23.537Z","updated_at":"2026-03-16T19:30:14.219Z","avatar_url":"https://github.com/labd.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# akeneo\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.0\n- Package version: 1.0.0\n- Build package: org.openapitools.codegen.languages.PythonNextgenClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation \u0026 Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/labd/akeneo-python-sdk.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/labd/akeneo-python-sdk.git`)\n\nThen import the package:\n```python\nimport akeneo\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 akeneo\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nfrom __future__ import print_function\n\nimport time\nimport akeneo\nfrom akeneo.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://demo.akeneo.com\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = akeneo.Configuration(\n    host = \"http://demo.akeneo.com\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith akeneo.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = akeneo.AssetApi(api_client)\n    asset_family_code = 'asset_family_code_example' # str | Code of the asset family\n    code = 'code_example' # str | Code of the resource\n\n    try:\n        # Delete an asset\n        api_instance.delete_assets_code(asset_family_code, code)\n    except ApiException as e:\n        print(\"Exception when calling AssetApi-\u003edelete_assets_code: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://demo.akeneo.com*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AssetApi* | [**delete_assets_code**](docs/AssetApi.md#delete_assets_code) | **DELETE** /api/rest/v1/asset-families/{asset_family_code}/assets/{code} | Delete an asset\n*AssetApi* | [**get_assets**](docs/AssetApi.md#get_assets) | **GET** /api/rest/v1/asset-families/{asset_family_code}/assets | Get the list of the assets of a given asset family\n*AssetApi* | [**get_assets_code**](docs/AssetApi.md#get_assets_code) | **GET** /api/rest/v1/asset-families/{asset_family_code}/assets/{code} | Get an asset of a given asset family\n*AssetApi* | [**patch_asset_code**](docs/AssetApi.md#patch_asset_code) | **PATCH** /api/rest/v1/asset-families/{asset_family_code}/assets/{code} | Update/create an asset\n*AssetApi* | [**patch_assets**](docs/AssetApi.md#patch_assets) | **PATCH** /api/rest/v1/asset-families/{asset_family_code}/assets | Update/create several assets\n*AssetAttributeApi* | [**get_asset_families_code_attributes**](docs/AssetAttributeApi.md#get_asset_families_code_attributes) | **GET** /api/rest/v1/asset-families/{asset_family_code}/attributes | Get the list of attributes of a given asset family\n*AssetAttributeApi* | [**get_asset_family_attributes_code**](docs/AssetAttributeApi.md#get_asset_family_attributes_code) | **GET** /api/rest/v1/asset-families/{asset_family_code}/attributes/{code} | Get an attribute of a given asset family\n*AssetAttributeApi* | [**patch_asset_family_attributes_code**](docs/AssetAttributeApi.md#patch_asset_family_attributes_code) | **PATCH** /api/rest/v1/asset-families/{asset_family_code}/attributes/{code} | Update/create an attribute of a given asset family\n*AssetAttributeOptionApi* | [**get_asset_attributes_attribute_code_options_code**](docs/AssetAttributeOptionApi.md#get_asset_attributes_attribute_code_options_code) | **GET** /api/rest/v1/asset-families/{asset_family_code}/attributes/{attribute_code}/options/{code} | Get an attribute option for a given attribute of a given asset family\n*AssetAttributeOptionApi* | [**get_asset_family_attributes_attribute_code_options**](docs/AssetAttributeOptionApi.md#get_asset_family_attributes_attribute_code_options) | **GET** /api/rest/v1/asset-families/{asset_family_code}/attributes/{attribute_code}/options | Get a list of attribute options of a given attribute for a given asset family\n*AssetAttributeOptionApi* | [**patch_asset_attributes_attribute_code_options_code**](docs/AssetAttributeOptionApi.md#patch_asset_attributes_attribute_code_options_code) | **PATCH** /api/rest/v1/asset-families/{asset_family_code}/attributes/{attribute_code}/options/{code} | Update/create an asset attribute option for a given asset family\n*AssetFamilyApi* | [**get_asset_families**](docs/AssetFamilyApi.md#get_asset_families) | **GET** /api/rest/v1/asset-families | Get list of asset families\n*AssetFamilyApi* | [**get_asset_family_code**](docs/AssetFamilyApi.md#get_asset_family_code) | **GET** /api/rest/v1/asset-families/{code} | Get an asset family\n*AssetFamilyApi* | [**patch_asset_family_code**](docs/AssetFamilyApi.md#patch_asset_family_code) | **PATCH** /api/rest/v1/asset-families/{code} | Update/create an asset family\n*AssetMediaFileApi* | [**get_asset_media_files_code**](docs/AssetMediaFileApi.md#get_asset_media_files_code) | **GET** /api/rest/v1/asset-media-files/{code} | Download the media file associated to an asset\n*AssetMediaFileApi* | [**post_asset_media_files**](docs/AssetMediaFileApi.md#post_asset_media_files) | **POST** /api/rest/v1/asset-media-files | Create a new media file for an asset\n*AssociationTypeApi* | [**association_types_get**](docs/AssociationTypeApi.md#association_types_get) | **GET** /api/rest/v1/association-types/{code} | Get an association type\n*AssociationTypeApi* | [**association_types_get_list**](docs/AssociationTypeApi.md#association_types_get_list) | **GET** /api/rest/v1/association-types | Get a list of association types\n*AssociationTypeApi* | [**association_types_patch**](docs/AssociationTypeApi.md#association_types_patch) | **PATCH** /api/rest/v1/association-types/{code} | Update/create an association type\n*AssociationTypeApi* | [**association_types_post**](docs/AssociationTypeApi.md#association_types_post) | **POST** /api/rest/v1/association-types | Create a new association type\n*AssociationTypeApi* | [**several_association_types_patch**](docs/AssociationTypeApi.md#several_association_types_patch) | **PATCH** /api/rest/v1/association-types | Update/create several association types\n*AttributeApi* | [**get_attributes**](docs/AttributeApi.md#get_attributes) | **GET** /api/rest/v1/attributes | Get list of attributes\n*AttributeApi* | [**get_attributes_code**](docs/AttributeApi.md#get_attributes_code) | **GET** /api/rest/v1/attributes/{code} | Get an attribute\n*AttributeApi* | [**patch_attributes**](docs/AttributeApi.md#patch_attributes) | **PATCH** /api/rest/v1/attributes | Update/create several attributes\n*AttributeApi* | [**patch_attributes_code**](docs/AttributeApi.md#patch_attributes_code) | **PATCH** /api/rest/v1/attributes/{code} | Update/create an attribute\n*AttributeApi* | [**post_attributes**](docs/AttributeApi.md#post_attributes) | **POST** /api/rest/v1/attributes | Create a new attribute\n*AttributeGroupApi* | [**attribute_groups_get**](docs/AttributeGroupApi.md#attribute_groups_get) | **GET** /api/rest/v1/attribute-groups/{code} | Get an attribute group\n*AttributeGroupApi* | [**attribute_groups_get_list**](docs/AttributeGroupApi.md#attribute_groups_get_list) | **GET** /api/rest/v1/attribute-groups | Get list of attribute groups\n*AttributeGroupApi* | [**attribute_groups_patch**](docs/AttributeGroupApi.md#attribute_groups_patch) | **PATCH** /api/rest/v1/attribute-groups/{code} | Update/create an attribute group\n*AttributeGroupApi* | [**attribute_groups_post**](docs/AttributeGroupApi.md#attribute_groups_post) | **POST** /api/rest/v1/attribute-groups | Create a new attribute group\n*AttributeGroupApi* | [**several_attribute_groups_patch**](docs/AttributeGroupApi.md#several_attribute_groups_patch) | **PATCH** /api/rest/v1/attribute-groups | Update/create several attribute groups\n*AttributeOptionApi* | [**get_attributes_attribute_code_options**](docs/AttributeOptionApi.md#get_attributes_attribute_code_options) | **GET** /api/rest/v1/attributes/{attribute_code}/options | Get list of attribute options\n*AttributeOptionApi* | [**get_attributes_attribute_code_options_code**](docs/AttributeOptionApi.md#get_attributes_attribute_code_options_code) | **GET** /api/rest/v1/attributes/{attribute_code}/options/{code} | Get an attribute option\n*AttributeOptionApi* | [**patch_attributes_attribute_code_options**](docs/AttributeOptionApi.md#patch_attributes_attribute_code_options) | **PATCH** /api/rest/v1/attributes/{attribute_code}/options | Update/create several attribute options\n*AttributeOptionApi* | [**patch_attributes_attribute_code_options_code**](docs/AttributeOptionApi.md#patch_attributes_attribute_code_options_code) | **PATCH** /api/rest/v1/attributes/{attribute_code}/options/{code} | Update/create an attribute option\n*AttributeOptionApi* | [**post_attributes_attribute_code_options**](docs/AttributeOptionApi.md#post_attributes_attribute_code_options) | **POST** /api/rest/v1/attributes/{attribute_code}/options | Create a new attribute option\n*AuthenticationApi* | [**post_token**](docs/AuthenticationApi.md#post_token) | **POST** /api/oauth/v1/token | Get authentication token\n*CatalogProductsApi* | [**get_app_catalog_product_uuids**](docs/CatalogProductsApi.md#get_app_catalog_product_uuids) | **GET** /api/rest/v1/catalogs/{id}/product-uuids | Get the list of product uuids\n*CatalogProductsApi* | [**get_app_catalog_products**](docs/CatalogProductsApi.md#get_app_catalog_products) | **GET** /api/rest/v1/catalogs/{id}/products | Get the list of products related to a catalog\n*CatalogProductsApi* | [**get_app_catalog_products_uuid**](docs/CatalogProductsApi.md#get_app_catalog_products_uuid) | **GET** /api/rest/v1/catalogs/{id}/products/{uuid} | Get a product related to a catalog\n*CatalogsApi* | [**delete_app_catalog**](docs/CatalogsApi.md#delete_app_catalog) | **DELETE** /api/rest/v1/catalogs/{id} | Delete a catalog\n*CatalogsApi* | [**get_app_catalog**](docs/CatalogsApi.md#get_app_catalog) | **GET** /api/rest/v1/catalogs/{id} | Get a catalog\n*CatalogsApi* | [**get_app_catalogs**](docs/CatalogsApi.md#get_app_catalogs) | **GET** /api/rest/v1/catalogs | Get the list of owned catalogs\n*CatalogsApi* | [**patch_app_catalog**](docs/CatalogsApi.md#patch_app_catalog) | **PATCH** /api/rest/v1/catalogs/{id} | Update a catalog\n*CatalogsApi* | [**post_app_catalog**](docs/CatalogsApi.md#post_app_catalog) | **POST** /api/rest/v1/catalogs | Create a new catalog\n*CategoryApi* | [**get_categories**](docs/CategoryApi.md#get_categories) | **GET** /api/rest/v1/categories | Get list of categories\n*CategoryApi* | [**get_categories_code**](docs/CategoryApi.md#get_categories_code) | **GET** /api/rest/v1/categories/{code} | Get a category\n*CategoryApi* | [**get_category_media_files_code_download**](docs/CategoryApi.md#get_category_media_files_code_download) | **GET** /api/rest/v1/category-media-files/{code}/download | Download a category media file [COMING SOON]\n*CategoryApi* | [**patch_categories**](docs/CategoryApi.md#patch_categories) | **PATCH** /api/rest/v1/categories | Update/create several categories\n*CategoryApi* | [**patch_categories_code**](docs/CategoryApi.md#patch_categories_code) | **PATCH** /api/rest/v1/categories/{code} | Update/create a category\n*CategoryApi* | [**post_categories**](docs/CategoryApi.md#post_categories) | **POST** /api/rest/v1/categories | Create a new category\n*ChannelApi* | [**channels_patch**](docs/ChannelApi.md#channels_patch) | **PATCH** /api/rest/v1/channels/{code} | Update/create a channel\n*ChannelApi* | [**channels_post**](docs/ChannelApi.md#channels_post) | **POST** /api/rest/v1/channels | Create a new channel\n*ChannelApi* | [**get_channels**](docs/ChannelApi.md#get_channels) | **GET** /api/rest/v1/channels | Get a list of channels\n*ChannelApi* | [**get_channels_code**](docs/ChannelApi.md#get_channels_code) | **GET** /api/rest/v1/channels/{code} | Get a channel\n*ChannelApi* | [**several_channels_patch**](docs/ChannelApi.md#several_channels_patch) | **PATCH** /api/rest/v1/channels | Update/create several channels\n*CurrencyApi* | [**currencies_get**](docs/CurrencyApi.md#currencies_get) | **GET** /api/rest/v1/currencies/{code} | Get a currency\n*CurrencyApi* | [**currencies_get_list**](docs/CurrencyApi.md#currencies_get_list) | **GET** /api/rest/v1/currencies | Get a list of currencies\n*FamilyApi* | [**get_families**](docs/FamilyApi.md#get_families) | **GET** /api/rest/v1/families | Get list of families\n*FamilyApi* | [**get_families_code**](docs/FamilyApi.md#get_families_code) | **GET** /api/rest/v1/families/{code} | Get a family\n*FamilyApi* | [**patch_families**](docs/FamilyApi.md#patch_families) | **PATCH** /api/rest/v1/families | Update/create several families\n*FamilyApi* | [**patch_families_code**](docs/FamilyApi.md#patch_families_code) | **PATCH** /api/rest/v1/families/{code} | Update/create a family\n*FamilyApi* | [**post_families**](docs/FamilyApi.md#post_families) | **POST** /api/rest/v1/families | Create a new family\n*FamilyApi* | [**post_families_family_code_variants**](docs/FamilyApi.md#post_families_family_code_variants) | **POST** /api/rest/v1/families/{family_code}/variants | Create a new family variant\n*FamilyVariantApi* | [**get_families_family_code_variants**](docs/FamilyVariantApi.md#get_families_family_code_variants) | **GET** /api/rest/v1/families/{family_code}/variants | Get list of family variants\n*FamilyVariantApi* | [**get_families_family_code_variants_code**](docs/FamilyVariantApi.md#get_families_family_code_variants_code) | **GET** /api/rest/v1/families/{family_code}/variants/{code} | Get a family variant\n*FamilyVariantApi* | [**patch_families_family_code_variants**](docs/FamilyVariantApi.md#patch_families_family_code_variants) | **PATCH** /api/rest/v1/families/{family_code}/variants | Update/create several family variants\n*FamilyVariantApi* | [**patch_families_family_code_variants_code**](docs/FamilyVariantApi.md#patch_families_family_code_variants_code) | **PATCH** /api/rest/v1/families/{family_code}/variants/{code} | Update/create a family variant\n*LocaleApi* | [**get_locales**](docs/LocaleApi.md#get_locales) | **GET** /api/rest/v1/locales | Get a list of locales\n*LocaleApi* | [**get_locales_code**](docs/LocaleApi.md#get_locales_code) | **GET** /api/rest/v1/locales/{code} | Get a locale\n*MeasureFamilyApi* | [**measure_families_get**](docs/MeasureFamilyApi.md#measure_families_get) | **GET** /api/rest/v1/measure-families/{code} | Get a measure family\n*MeasureFamilyApi* | [**measure_families_get_list**](docs/MeasureFamilyApi.md#measure_families_get_list) | **GET** /api/rest/v1/measure-families | Get list of measure familiy\n*MeasurementFamilyApi* | [**measurement_families_get_list**](docs/MeasurementFamilyApi.md#measurement_families_get_list) | **GET** /api/rest/v1/measurement-families | Get list of measurement families\n*MeasurementFamilyApi* | [**patch_measurement_families**](docs/MeasurementFamilyApi.md#patch_measurement_families) | **PATCH** /api/rest/v1/measurement-families | Update/create several measurement families\n*OverviewApi* | [**get_endpoints**](docs/OverviewApi.md#get_endpoints) | **GET** /api/rest/v1 | Get list of all endpoints\n*PAMAssetApi* | [**get_pam_assets**](docs/PAMAssetApi.md#get_pam_assets) | **GET** /api/rest/v1/assets | Get list of PAM assets\n*PAMAssetApi* | [**get_pam_assets_code**](docs/PAMAssetApi.md#get_pam_assets_code) | **GET** /api/rest/v1/assets/{code} | Get a PAM asset\n*PAMAssetApi* | [**patch_pam_assets**](docs/PAMAssetApi.md#patch_pam_assets) | **PATCH** /api/rest/v1/assets | Update/create several PAM assets\n*PAMAssetApi* | [**patch_pam_assets_code**](docs/PAMAssetApi.md#patch_pam_assets_code) | **PATCH** /api/rest/v1/assets/{code} | Update/create a PAM asset\n*PAMAssetApi* | [**post_pam_assets**](docs/PAMAssetApi.md#post_pam_assets) | **POST** /api/rest/v1/assets | Create a new PAM asset\n*PAMAssetCategoryApi* | [**get_asset_categories**](docs/PAMAssetCategoryApi.md#get_asset_categories) | **GET** /api/rest/v1/asset-categories | Get list of PAM asset categories\n*PAMAssetCategoryApi* | [**get_asset_categories_code**](docs/PAMAssetCategoryApi.md#get_asset_categories_code) | **GET** /api/rest/v1/asset-categories/{code} | Get a PAM asset category\n*PAMAssetCategoryApi* | [**patch_asset_categories**](docs/PAMAssetCategoryApi.md#patch_asset_categories) | **PATCH** /api/rest/v1/asset-categories | Update/create several PAM asset categories\n*PAMAssetCategoryApi* | [**patch_asset_categories_code**](docs/PAMAssetCategoryApi.md#patch_asset_categories_code) | **PATCH** /api/rest/v1/asset-categories/{code} | Update/create a PAM asset category\n*PAMAssetCategoryApi* | [**post_asset_categories**](docs/PAMAssetCategoryApi.md#post_asset_categories) | **POST** /api/rest/v1/asset-categories | Create a new PAM asset category\n*PAMAssetReferenceFileApi* | [**get_reference_files_channel_code_locale_code_download**](docs/PAMAssetReferenceFileApi.md#get_reference_files_channel_code_locale_code_download) | **GET** /api/rest/v1/assets/{asset_code}/reference-files/{locale_code}/download | Download a reference file\n*PAMAssetReferenceFileApi* | [**get_reference_files_locale_code**](docs/PAMAssetReferenceFileApi.md#get_reference_files_locale_code) | **GET** /api/rest/v1/assets/{asset_code}/reference-files/{locale_code} | Get a reference file\n*PAMAssetReferenceFileApi* | [**post_reference_files_locale_code**](docs/PAMAssetReferenceFileApi.md#post_reference_files_locale_code) | **POST** /api/rest/v1/assets/{asset_code}/reference-files/{locale_code} | Upload a new reference file\n*PAMAssetTagApi* | [**get_asset_tags**](docs/PAMAssetTagApi.md#get_asset_tags) | **GET** /api/rest/v1/asset-tags | Get list of PAM asset tags\n*PAMAssetTagApi* | [**get_asset_tags_code**](docs/PAMAssetTagApi.md#get_asset_tags_code) | **GET** /api/rest/v1/asset-tags/{code} | Get a PAM asset tag\n*PAMAssetTagApi* | [**patch_asset_tags_code**](docs/PAMAssetTagApi.md#patch_asset_tags_code) | **PATCH** /api/rest/v1/asset-tags/{code} | Update/create a PAM asset tag\n*PAMAssetVariationFileApi* | [**get_variation_files_channel_code_locale_code**](docs/PAMAssetVariationFileApi.md#get_variation_files_channel_code_locale_code) | **GET** /api/rest/v1/assets/{asset_code}/variation-files/{channel_code}/{locale_code} | Get a variation file\n*PAMAssetVariationFileApi* | [**get_variation_files_channel_code_locale_code_download**](docs/PAMAssetVariationFileApi.md#get_variation_files_channel_code_locale_code_download) | **GET** /api/rest/v1/assets/{asset_code}/variation-files/{channel_code}/{locale_code}/download | Download a variation file\n*PAMAssetVariationFileApi* | [**post_variation_files_channel_code_locale_code**](docs/PAMAssetVariationFileApi.md#post_variation_files_channel_code_locale_code) | **POST** /api/rest/v1/assets/{asset_code}/variation-files/{channel_code}/{locale_code} | Upload a new variation file\n*ProductIdentifierApi* | [**delete_products_code**](docs/ProductIdentifierApi.md#delete_products_code) | **DELETE** /api/rest/v1/products/{code} | Delete a product\n*ProductIdentifierApi* | [**get_draft_code**](docs/ProductIdentifierApi.md#get_draft_code) | **GET** /api/rest/v1/products/{code}/draft | Get a draft\n*ProductIdentifierApi* | [**get_products**](docs/ProductIdentifierApi.md#get_products) | **GET** /api/rest/v1/products | Get list of products\n*ProductIdentifierApi* | [**get_products_code**](docs/ProductIdentifierApi.md#get_products_code) | **GET** /api/rest/v1/products/{code} | Get a product\n*ProductIdentifierApi* | [**patch_products**](docs/ProductIdentifierApi.md#patch_products) | **PATCH** /api/rest/v1/products | Update/create several products\n*ProductIdentifierApi* | [**patch_products_code**](docs/ProductIdentifierApi.md#patch_products_code) | **PATCH** /api/rest/v1/products/{code} | Update/create a product\n*ProductIdentifierApi* | [**post_products**](docs/ProductIdentifierApi.md#post_products) | **POST** /api/rest/v1/products | Create a new product\n*ProductIdentifierApi* | [**post_proposal**](docs/ProductIdentifierApi.md#post_proposal) | **POST** /api/rest/v1/products/{code}/proposal | Submit a draft for approval\n*ProductUuidApi* | [**delete_products_uuid_uuid**](docs/ProductUuidApi.md#delete_products_uuid_uuid) | **DELETE** /api/rest/v1/products-uuid/{uuid} | Delete a product\n*ProductUuidApi* | [**get_draft_uuid_uuid**](docs/ProductUuidApi.md#get_draft_uuid_uuid) | **GET** /api/rest/v1/products-uuid/{uuid}/draft | Get a draft\n*ProductUuidApi* | [**get_products_uuid**](docs/ProductUuidApi.md#get_products_uuid) | **GET** /api/rest/v1/products-uuid | Get list of products\n*ProductUuidApi* | [**get_products_uuid_uuid**](docs/ProductUuidApi.md#get_products_uuid_uuid) | **GET** /api/rest/v1/products-uuid/{uuid} | Get a product\n*ProductUuidApi* | [**patch_products_uuid**](docs/ProductUuidApi.md#patch_products_uuid) | **PATCH** /api/rest/v1/products-uuid | Update/create several products\n*ProductUuidApi* | [**patch_products_uuid_uuid**](docs/ProductUuidApi.md#patch_products_uuid_uuid) | **PATCH** /api/rest/v1/products-uuid/{uuid} | Update/create a product\n*ProductUuidApi* | [**post_products_uuid**](docs/ProductUuidApi.md#post_products_uuid) | **POST** /api/rest/v1/products-uuid | Create a new product\n*ProductUuidApi* | [**post_proposal_uuid**](docs/ProductUuidApi.md#post_proposal_uuid) | **POST** /api/rest/v1/products-uuid/{uuid}/proposal | Submit a draft for approval\n*ProductMediaFileApi* | [**get_media_files**](docs/ProductMediaFileApi.md#get_media_files) | **GET** /api/rest/v1/media-files | Get a list of product media files\n*ProductMediaFileApi* | [**get_media_files_code**](docs/ProductMediaFileApi.md#get_media_files_code) | **GET** /api/rest/v1/media-files/{code} | Get a product media file\n*ProductMediaFileApi* | [**get_media_files_code_download**](docs/ProductMediaFileApi.md#get_media_files_code_download) | **GET** /api/rest/v1/media-files/{code}/download | Download a product media file\n*ProductMediaFileApi* | [**post_media_files**](docs/ProductMediaFileApi.md#post_media_files) | **POST** /api/rest/v1/media-files | Create a new product media file\n*ProductModelApi* | [**delete_product_models_code**](docs/ProductModelApi.md#delete_product_models_code) | **DELETE** /api/rest/v1/product-models/{code} | Delete a product model\n*ProductModelApi* | [**get_product_model_draft_code**](docs/ProductModelApi.md#get_product_model_draft_code) | **GET** /api/rest/v1/product-models/{code}/draft | Get a draft\n*ProductModelApi* | [**get_product_models**](docs/ProductModelApi.md#get_product_models) | **GET** /api/rest/v1/product-models | Get list of product models\n*ProductModelApi* | [**get_product_models_code**](docs/ProductModelApi.md#get_product_models_code) | **GET** /api/rest/v1/product-models/{code} | Get a product model\n*ProductModelApi* | [**patch_product_models**](docs/ProductModelApi.md#patch_product_models) | **PATCH** /api/rest/v1/product-models | Update/create several product models\n*ProductModelApi* | [**patch_product_models_code**](docs/ProductModelApi.md#patch_product_models_code) | **PATCH** /api/rest/v1/product-models/{code} | Update/create a product model\n*ProductModelApi* | [**post_product_model_proposal**](docs/ProductModelApi.md#post_product_model_proposal) | **POST** /api/rest/v1/product-models/{code}/proposal | Submit a draft for approval\n*ProductModelApi* | [**post_product_models**](docs/ProductModelApi.md#post_product_models) | **POST** /api/rest/v1/product-models | Create a new product model\n*PublishedProductApi* | [**get_published_products**](docs/PublishedProductApi.md#get_published_products) | **GET** /api/rest/v1/published-products | Get list of published products\n*PublishedProductApi* | [**get_published_products_code**](docs/PublishedProductApi.md#get_published_products_code) | **GET** /api/rest/v1/published-products/{code} | Get a published product\n*ReferenceEntityApi* | [**get_reference_entities**](docs/ReferenceEntityApi.md#get_reference_entities) | **GET** /api/rest/v1/reference-entities | Get list of reference entities\n*ReferenceEntityApi* | [**get_reference_entities_code**](docs/ReferenceEntityApi.md#get_reference_entities_code) | **GET** /api/rest/v1/reference-entities/{code} | Get a reference entity\n*ReferenceEntityApi* | [**patch_reference_entity_code**](docs/ReferenceEntityApi.md#patch_reference_entity_code) | **PATCH** /api/rest/v1/reference-entities/{code} | Update/create a reference entity\n*ReferenceEntityAttributeApi* | [**get_reference_entities_code_attributes**](docs/ReferenceEntityAttributeApi.md#get_reference_entities_code_attributes) | **GET** /api/rest/v1/reference-entities/{reference_entity_code}/attributes | Get the list of attributes of a given reference entity\n*ReferenceEntityAttributeApi* | [**get_reference_entity_attributes_code**](docs/ReferenceEntityAttributeApi.md#get_reference_entity_attributes_code) | **GET** /api/rest/v1/reference-entities/{reference_entity_code}/attributes/{code} | Get an attribute of a given reference entity\n*ReferenceEntityAttributeApi* | [**patch_reference_entity_attributes_code**](docs/ReferenceEntityAttributeApi.md#patch_reference_entity_attributes_code) | **PATCH** /api/rest/v1/reference-entities/{reference_entity_code}/attributes/{code} | Update/create an attribute of a given reference entity\n*ReferenceEntityAttributeOptionApi* | [**get_reference_entity_attributes_attribute_code_options**](docs/ReferenceEntityAttributeOptionApi.md#get_reference_entity_attributes_attribute_code_options) | **GET** /api/rest/v1/reference-entities/{reference_entity_code}/attributes/{attribute_code}/options | Get a list of attribute options of a given attribute for a given reference entity\n*ReferenceEntityAttributeOptionApi* | [**get_reference_entity_attributes_attribute_code_options_code**](docs/ReferenceEntityAttributeOptionApi.md#get_reference_entity_attributes_attribute_code_options_code) | **GET** /api/rest/v1/reference-entities/{reference_entity_code}/attributes/{attribute_code}/options/{code} | Get an attribute option for a given attribute of a given reference entity\n*ReferenceEntityAttributeOptionApi* | [**patch_reference_entity_attributes_attribute_code_options_code**](docs/ReferenceEntityAttributeOptionApi.md#patch_reference_entity_attributes_attribute_code_options_code) | **PATCH** /api/rest/v1/reference-entities/{reference_entity_code}/attributes/{attribute_code}/options/{code} | Update/create a reference entity attribute option\n*ReferenceEntityMediaFileApi* | [**get_reference_entity_media_files_code**](docs/ReferenceEntityMediaFileApi.md#get_reference_entity_media_files_code) | **GET** /api/rest/v1/reference-entities-media-files/{code} | Download the media file associated to a reference entity or a record\n*ReferenceEntityMediaFileApi* | [**post_reference_entity_media_files**](docs/ReferenceEntityMediaFileApi.md#post_reference_entity_media_files) | **POST** /api/rest/v1/reference-entities-media-files | Create a new media file for a reference entity or a record\n*ReferenceEntityRecordApi* | [**get_reference_entity_records**](docs/ReferenceEntityRecordApi.md#get_reference_entity_records) | **GET** /api/rest/v1/reference-entities/{reference_entity_code}/records | Get the list of the records of a reference entity\n*ReferenceEntityRecordApi* | [**get_reference_entity_records_code**](docs/ReferenceEntityRecordApi.md#get_reference_entity_records_code) | **GET** /api/rest/v1/reference-entities/{reference_entity_code}/records/{code} | Get a record of a given reference entity\n*ReferenceEntityRecordApi* | [**patch_reference_entity_records**](docs/ReferenceEntityRecordApi.md#patch_reference_entity_records) | **PATCH** /api/rest/v1/reference-entities/{reference_entity_code}/records | Update/create several reference entity records\n*ReferenceEntityRecordApi* | [**patch_reference_entity_records_code**](docs/ReferenceEntityRecordApi.md#patch_reference_entity_records_code) | **PATCH** /api/rest/v1/reference-entities/{reference_entity_code}/records/{code} | Update/create a record of a given reference entity\n*SystemApi* | [**get_system_information**](docs/SystemApi.md#get_system_information) | **GET** /api/rest/v1/system-information | Get system information\n\n\n## Documentation For Models\n\n - [AppCatalogList](docs/AppCatalogList.md)\n - [AppCatalogListAllOf](docs/AppCatalogListAllOf.md)\n - [Asset](docs/Asset.md)\n - [AssetEmbedded](docs/AssetEmbedded.md)\n - [AssetEmbeddedItemsInner](docs/AssetEmbeddedItemsInner.md)\n - [AssetEmbeddedItemsInnerAllOf](docs/AssetEmbeddedItemsInnerAllOf.md)\n - [AssetEmbeddedItemsInnerAllOfValuesValueInner](docs/AssetEmbeddedItemsInnerAllOfValuesValueInner.md)\n - [AssetFamilies](docs/AssetFamilies.md)\n - [AssetFamiliesEmbedded](docs/AssetFamiliesEmbedded.md)\n - [AssetFamiliesEmbeddedItemsInner](docs/AssetFamiliesEmbeddedItemsInner.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOf](docs/AssetFamiliesEmbeddedItemsInnerAllOf.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfLabels](docs/AssetFamiliesEmbeddedItemsInnerAllOfLabels.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfNamingConvention](docs/AssetFamiliesEmbeddedItemsInnerAllOfNamingConvention.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfProductLinkRulesInner](docs/AssetFamiliesEmbeddedItemsInnerAllOfProductLinkRulesInner.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfProductLinkRulesInnerAssignAssetsToInner](docs/AssetFamiliesEmbeddedItemsInnerAllOfProductLinkRulesInnerAssignAssetsToInner.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfProductLinkRulesInnerProductSelectionsInner](docs/AssetFamiliesEmbeddedItemsInnerAllOfProductLinkRulesInnerProductSelectionsInner.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInner](docs/AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInner.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerOperations](docs/AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerOperations.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerOperationsParameters](docs/AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerOperationsParameters.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerSource](docs/AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerSource.md)\n - [AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerTarget](docs/AssetFamiliesEmbeddedItemsInnerAllOfTransformationsInnerTarget.md)\n - [AssetFamilyItemList](docs/AssetFamilyItemList.md)\n - [AssetFamilyList](docs/AssetFamilyList.md)\n - [AssetFamilyListAllOf](docs/AssetFamilyListAllOf.md)\n - [AssetFamilyListAllOfAssignAssetsTo](docs/AssetFamilyListAllOfAssignAssetsTo.md)\n - [AssetFamilyListAllOfLabels](docs/AssetFamilyListAllOfLabels.md)\n - [AssetFamilyListAllOfNamingConvention](docs/AssetFamilyListAllOfNamingConvention.md)\n - [AssetFamilyListAllOfOperations](docs/AssetFamilyListAllOfOperations.md)\n - [AssetFamilyListAllOfOperationsParameters](docs/AssetFamilyListAllOfOperationsParameters.md)\n - [AssetFamilyListAllOfProductLinkRules](docs/AssetFamilyListAllOfProductLinkRules.md)\n - [AssetFamilyListAllOfProductSelections](docs/AssetFamilyListAllOfProductSelections.md)\n - [AssetFamilyListAllOfSource](docs/AssetFamilyListAllOfSource.md)\n - [AssetFamilyListAllOfTarget](docs/AssetFamilyListAllOfTarget.md)\n - [AssetFamilyListAllOfTransformations](docs/AssetFamilyListAllOfTransformations.md)\n - [AssetItemList](docs/AssetItemList.md)\n - [AssetList](docs/AssetList.md)\n - [AssetListAllOf](docs/AssetListAllOf.md)\n - [AssociationType](docs/AssociationType.md)\n - [AssociationTypeList](docs/AssociationTypeList.md)\n - [AssociationTypeListAllOf](docs/AssociationTypeListAllOf.md)\n - [AssociationTypeListAllOfLabels](docs/AssociationTypeListAllOfLabels.md)\n - [AssociationTypes](docs/AssociationTypes.md)\n - [AssociationTypesEmbedded](docs/AssociationTypesEmbedded.md)\n - [AssociationTypesEmbeddedItemsInner](docs/AssociationTypesEmbeddedItemsInner.md)\n - [AssociationTypesEmbeddedItemsInnerAllOf](docs/AssociationTypesEmbeddedItemsInnerAllOf.md)\n - [AssociationTypesEmbeddedItemsInnerAllOfLabels](docs/AssociationTypesEmbeddedItemsInnerAllOfLabels.md)\n - [Attribute](docs/Attribute.md)\n - [AttributeGroup](docs/AttributeGroup.md)\n - [AttributeGroupList](docs/AttributeGroupList.md)\n - [AttributeGroupListAllOf](docs/AttributeGroupListAllOf.md)\n - [AttributeGroupListAllOfLabels](docs/AttributeGroupListAllOfLabels.md)\n - [AttributeGroups](docs/AttributeGroups.md)\n - [AttributeGroupsEmbedded](docs/AttributeGroupsEmbedded.md)\n - [AttributeGroupsEmbeddedItemsInner](docs/AttributeGroupsEmbeddedItemsInner.md)\n - [AttributeGroupsEmbeddedItemsInnerAllOf](docs/AttributeGroupsEmbeddedItemsInnerAllOf.md)\n - [AttributeGroupsEmbeddedItemsInnerAllOfLabels](docs/AttributeGroupsEmbeddedItemsInnerAllOfLabels.md)\n - [AttributeList](docs/AttributeList.md)\n - [AttributeListAllOf](docs/AttributeListAllOf.md)\n - [AttributeListAllOfGroupLabels](docs/AttributeListAllOfGroupLabels.md)\n - [AttributeListAllOfLabels](docs/AttributeListAllOfLabels.md)\n - [AttributeListAllOfLabels1](docs/AttributeListAllOfLabels1.md)\n - [AttributeListAllOfTableConfiguration](docs/AttributeListAllOfTableConfiguration.md)\n - [AttributeListAllOfValidations](docs/AttributeListAllOfValidations.md)\n - [AttributeOption](docs/AttributeOption.md)\n - [AttributeOptionList](docs/AttributeOptionList.md)\n - [AttributeOptionListAllOf](docs/AttributeOptionListAllOf.md)\n - [AttributeOptionListAllOfLabels](docs/AttributeOptionListAllOfLabels.md)\n - [AttributeOptions](docs/AttributeOptions.md)\n - [AttributeOptionsEmbedded](docs/AttributeOptionsEmbedded.md)\n - [AttributeOptionsEmbeddedItemsInner](docs/AttributeOptionsEmbeddedItemsInner.md)\n - [AttributeOptionsEmbeddedItemsInnerAllOf](docs/AttributeOptionsEmbeddedItemsInnerAllOf.md)\n - [AttributeOptionsEmbeddedItemsInnerAllOfLabels](docs/AttributeOptionsEmbeddedItemsInnerAllOfLabels.md)\n - [Attributes](docs/Attributes.md)\n - [AttributesEmbedded](docs/AttributesEmbedded.md)\n - [AttributesEmbeddedItemsInner](docs/AttributesEmbeddedItemsInner.md)\n - [AttributesEmbeddedItemsInnerAllOf](docs/AttributesEmbeddedItemsInnerAllOf.md)\n - [AttributesEmbeddedItemsInnerAllOfGroupLabels](docs/AttributesEmbeddedItemsInnerAllOfGroupLabels.md)\n - [AttributesEmbeddedItemsInnerAllOfLabels](docs/AttributesEmbeddedItemsInnerAllOfLabels.md)\n - [AttributesEmbeddedItemsInnerAllOfTableConfigurationInner](docs/AttributesEmbeddedItemsInnerAllOfTableConfigurationInner.md)\n - [AttributesEmbeddedItemsInnerAllOfTableConfigurationInnerLabels](docs/AttributesEmbeddedItemsInnerAllOfTableConfigurationInnerLabels.md)\n - [AttributesEmbeddedItemsInnerAllOfTableConfigurationInnerValidations](docs/AttributesEmbeddedItemsInnerAllOfTableConfigurationInnerValidations.md)\n - [Catalogs](docs/Catalogs.md)\n - [CatalogsEmbedded](docs/CatalogsEmbedded.md)\n - [CatalogsEmbeddedItemsInner](docs/CatalogsEmbeddedItemsInner.md)\n - [CatalogsEmbeddedItemsInnerAllOf](docs/CatalogsEmbeddedItemsInnerAllOf.md)\n - [Categories](docs/Categories.md)\n - [CategoriesEmbedded](docs/CategoriesEmbedded.md)\n - [CategoriesEmbeddedItemsInner](docs/CategoriesEmbeddedItemsInner.md)\n - [CategoriesEmbeddedItemsInnerAllOf](docs/CategoriesEmbeddedItemsInnerAllOf.md)\n - [CategoriesEmbeddedItemsInnerAllOfLabels](docs/CategoriesEmbeddedItemsInnerAllOfLabels.md)\n - [CategoriesEmbeddedItemsInnerAllOfValues](docs/CategoriesEmbeddedItemsInnerAllOfValues.md)\n - [CategoriesEmbeddedItemsInnerAllOfValuesAdditionalPropertiesAttributeUuidChannelCodeLocaleCodeInner](docs/CategoriesEmbeddedItemsInnerAllOfValuesAdditionalPropertiesAttributeUuidChannelCodeLocaleCodeInner.md)\n - [Category](docs/Category.md)\n - [CategoryList](docs/CategoryList.md)\n - [CategoryListAllOf](docs/CategoryListAllOf.md)\n - [CategoryListAllOfLabels](docs/CategoryListAllOfLabels.md)\n - [CategoryListAllOfValues](docs/CategoryListAllOfValues.md)\n - [CategoryListAllOfValuesAdditionalPropertiesAttributeUuidChannelCodeLocaleCode](docs/CategoryListAllOfValuesAdditionalPropertiesAttributeUuidChannelCodeLocaleCode.md)\n - [Channel](docs/Channel.md)\n - [ChannelList](docs/ChannelList.md)\n - [ChannelListAllOf](docs/ChannelListAllOf.md)\n - [ChannelListAllOfConversionUnits](docs/ChannelListAllOfConversionUnits.md)\n - [ChannelListAllOfLabels](docs/ChannelListAllOfLabels.md)\n - [Channels](docs/Channels.md)\n - [ChannelsEmbedded](docs/ChannelsEmbedded.md)\n - [ChannelsEmbeddedItemsInner](docs/ChannelsEmbeddedItemsInner.md)\n - [ChannelsEmbeddedItemsInnerAllOf](docs/ChannelsEmbeddedItemsInnerAllOf.md)\n - [ChannelsEmbeddedItemsInnerAllOfConversionUnits](docs/ChannelsEmbeddedItemsInnerAllOfConversionUnits.md)\n - [ChannelsEmbeddedItemsInnerAllOfLabels](docs/ChannelsEmbeddedItemsInnerAllOfLabels.md)\n - [Currencies](docs/Currencies.md)\n - [CurrenciesEmbedded](docs/CurrenciesEmbedded.md)\n - [CurrenciesEmbeddedItemsInner](docs/CurrenciesEmbeddedItemsInner.md)\n - [CurrenciesEmbeddedItemsInnerAllOf](docs/CurrenciesEmbeddedItemsInnerAllOf.md)\n - [Currency](docs/Currency.md)\n - [CurrencyList](docs/CurrencyList.md)\n - [CurrencyListAllOf](docs/CurrencyListAllOf.md)\n - [DeprecatedAsset](docs/DeprecatedAsset.md)\n - [DeprecatedAssetCategory](docs/DeprecatedAssetCategory.md)\n - [DeprecatedAssetCategoryList](docs/DeprecatedAssetCategoryList.md)\n - [DeprecatedAssetCategoryListAllOf](docs/DeprecatedAssetCategoryListAllOf.md)\n - [DeprecatedAssetCategoryListAllOfLabels](docs/DeprecatedAssetCategoryListAllOfLabels.md)\n - [DeprecatedAssetList](docs/DeprecatedAssetList.md)\n - [DeprecatedAssetListAllOf](docs/DeprecatedAssetListAllOf.md)\n - [DeprecatedAssetListAllOfLink](docs/DeprecatedAssetListAllOfLink.md)\n - [DeprecatedAssetListAllOfLink1](docs/DeprecatedAssetListAllOfLink1.md)\n - [DeprecatedAssetListAllOfLink1Download](docs/DeprecatedAssetListAllOfLink1Download.md)\n - [DeprecatedAssetListAllOfLink1Self](docs/DeprecatedAssetListAllOfLink1Self.md)\n - [DeprecatedAssetListAllOfLinkDownload](docs/DeprecatedAssetListAllOfLinkDownload.md)\n - [DeprecatedAssetListAllOfLinkSelf](docs/DeprecatedAssetListAllOfLinkSelf.md)\n - [DeprecatedAssetListAllOfReferenceFiles](docs/DeprecatedAssetListAllOfReferenceFiles.md)\n - [DeprecatedAssetListAllOfVariationFiles](docs/DeprecatedAssetListAllOfVariationFiles.md)\n - [DeprecatedAssetReferenceFile](docs/DeprecatedAssetReferenceFile.md)\n - [DeprecatedAssetReferenceFileUploadWarning](docs/DeprecatedAssetReferenceFileUploadWarning.md)\n - [DeprecatedAssetTag](docs/DeprecatedAssetTag.md)\n - [DeprecatedAssetTagList](docs/DeprecatedAssetTagList.md)\n - [DeprecatedAssetTagListAllOf](docs/DeprecatedAssetTagListAllOf.md)\n - [DeprecatedAssetVariationFile](docs/DeprecatedAssetVariationFile.md)\n - [Error](docs/Error.md)\n - [ErrorByLine](docs/ErrorByLine.md)\n - [ErrorByLineProductUuid](docs/ErrorByLineProductUuid.md)\n - [Families](docs/Families.md)\n - [FamiliesEmbedded](docs/FamiliesEmbedded.md)\n - [FamiliesEmbeddedItemsInner](docs/FamiliesEmbeddedItemsInner.md)\n - [FamiliesEmbeddedItemsInnerAllOf](docs/FamiliesEmbeddedItemsInnerAllOf.md)\n - [FamiliesEmbeddedItemsInnerAllOfAttributeRequirements](docs/FamiliesEmbeddedItemsInnerAllOfAttributeRequirements.md)\n - [FamiliesEmbeddedItemsInnerAllOfLabels](docs/FamiliesEmbeddedItemsInnerAllOfLabels.md)\n - [Family](docs/Family.md)\n - [FamilyList](docs/FamilyList.md)\n - [FamilyListAllOf](docs/FamilyListAllOf.md)\n - [FamilyListAllOfAttributeRequirements](docs/FamilyListAllOfAttributeRequirements.md)\n - [FamilyListAllOfLabels](docs/FamilyListAllOfLabels.md)\n - [FamilyVariant](docs/FamilyVariant.md)\n - [FamilyVariantList](docs/FamilyVariantList.md)\n - [FamilyVariantListAllOf](docs/FamilyVariantListAllOf.md)\n - [FamilyVariantListAllOfLabels](docs/FamilyVariantListAllOfLabels.md)\n - [FamilyVariantListAllOfVariantAttributeSets](docs/FamilyVariantListAllOfVariantAttributeSets.md)\n - [FamilyVariants](docs/FamilyVariants.md)\n - [FamilyVariantsEmbedded](docs/FamilyVariantsEmbedded.md)\n - [FamilyVariantsEmbeddedItemsInner](docs/FamilyVariantsEmbeddedItemsInner.md)\n - [FamilyVariantsEmbeddedItemsInnerAllOf](docs/FamilyVariantsEmbeddedItemsInnerAllOf.md)\n - [FamilyVariantsEmbeddedItemsInnerAllOfLabels](docs/FamilyVariantsEmbeddedItemsInnerAllOfLabels.md)\n - [FamilyVariantsEmbeddedItemsInnerAllOfVariantAttributeSetsInner](docs/FamilyVariantsEmbeddedItemsInnerAllOfVariantAttributeSetsInner.md)\n - [GetAssetFamiliesCodeAttributes200ResponseInner](docs/GetAssetFamiliesCodeAttributes200ResponseInner.md)\n - [GetAssetFamilyAttributesAttributeCodeOptions200ResponseInner](docs/GetAssetFamilyAttributesAttributeCodeOptions200ResponseInner.md)\n - [GetEndpoints200Response](docs/GetEndpoints200Response.md)\n - [GetMediaFilesCode200Response](docs/GetMediaFilesCode200Response.md)\n - [GetMediaFilesCode200ResponseLinks](docs/GetMediaFilesCode200ResponseLinks.md)\n - [GetProducts401Response](docs/GetProducts401Response.md)\n - [GetReferenceEntitiesCode200Response](docs/GetReferenceEntitiesCode200Response.md)\n - [GetReferenceEntitiesCode200ResponseLinks](docs/GetReferenceEntitiesCode200ResponseLinks.md)\n - [GetReferenceEntitiesCodeAttributes200ResponseInner](docs/GetReferenceEntitiesCodeAttributes200ResponseInner.md)\n - [GetReferenceEntityAttributesAttributeCodeOptions200ResponseInner](docs/GetReferenceEntityAttributesAttributeCodeOptions200ResponseInner.md)\n - [GetReferenceEntityAttributesCode200Response](docs/GetReferenceEntityAttributesCode200Response.md)\n - [GetReferenceFilesLocaleCode200Response](docs/GetReferenceFilesLocaleCode200Response.md)\n - [GetReferenceFilesLocaleCode200ResponseLink](docs/GetReferenceFilesLocaleCode200ResponseLink.md)\n - [GetSystemInformation200Response](docs/GetSystemInformation200Response.md)\n - [GetVariationFilesChannelCodeLocaleCode200Response](docs/GetVariationFilesChannelCodeLocaleCode200Response.md)\n - [GetVariationFilesChannelCodeLocaleCode200ResponseLink](docs/GetVariationFilesChannelCodeLocaleCode200ResponseLink.md)\n - [ItemList](docs/ItemList.md)\n - [Locale](docs/Locale.md)\n - [LocaleList](docs/LocaleList.md)\n - [LocaleListAllOf](docs/LocaleListAllOf.md)\n - [Locales](docs/Locales.md)\n - [LocalesEmbedded](docs/LocalesEmbedded.md)\n - [LocalesEmbeddedItemsInner](docs/LocalesEmbeddedItemsInner.md)\n - [LocalesEmbeddedItemsInnerAllOf](docs/LocalesEmbeddedItemsInnerAllOf.md)\n - [MeasureFamilies](docs/MeasureFamilies.md)\n - [MeasureFamiliesEmbedded](docs/MeasureFamiliesEmbedded.md)\n - [MeasureFamiliesEmbeddedItemsInner](docs/MeasureFamiliesEmbeddedItemsInner.md)\n - [MeasureFamiliesEmbeddedItemsInnerAllOf](docs/MeasureFamiliesEmbeddedItemsInnerAllOf.md)\n - [MeasureFamiliesEmbeddedItemsInnerAllOfUnitsInner](docs/MeasureFamiliesEmbeddedItemsInnerAllOfUnitsInner.md)\n - [MeasureFamily](docs/MeasureFamily.md)\n - [MeasureFamilyList](docs/MeasureFamilyList.md)\n - [MeasureFamilyListAllOf](docs/MeasureFamilyListAllOf.md)\n - [MeasureFamilyListAllOfUnits](docs/MeasureFamilyListAllOfUnits.md)\n - [MeasurementFamiliesGetList200Response](docs/MeasurementFamiliesGetList200Response.md)\n - [MeasurementFamiliesGetList200ResponseLabels](docs/MeasurementFamiliesGetList200ResponseLabels.md)\n - [MeasurementFamiliesGetList200ResponseUnits](docs/MeasurementFamiliesGetList200ResponseUnits.md)\n - [MeasurementFamiliesGetList200ResponseUnitsUnitCode](docs/MeasurementFamiliesGetList200ResponseUnitsUnitCode.md)\n - [MeasurementFamiliesGetList200ResponseUnitsUnitCodeConvertFromStandardInner](docs/MeasurementFamiliesGetList200ResponseUnitsUnitCodeConvertFromStandardInner.md)\n - [MeasurementFamiliesGetList200ResponseUnitsUnitCodeLabels](docs/MeasurementFamiliesGetList200ResponseUnitsUnitCodeLabels.md)\n - [MeasurementFamily](docs/MeasurementFamily.md)\n - [MeasurementFamilyList](docs/MeasurementFamilyList.md)\n - [MediaFile](docs/MediaFile.md)\n - [MediaFileAllOf](docs/MediaFileAllOf.md)\n - [MediaFileAllOf1](docs/MediaFileAllOf1.md)\n - [MediaFileAllOfLinks](docs/MediaFileAllOfLinks.md)\n - [MediaFileAllOfLinksDownload](docs/MediaFileAllOfLinksDownload.md)\n - [MediaFileItemList](docs/MediaFileItemList.md)\n - [MediaFileList](docs/MediaFileList.md)\n - [MediaFileListAllOf](docs/MediaFileListAllOf.md)\n - [MediaFileListAllOfLinks](docs/MediaFileListAllOfLinks.md)\n - [MediaFileListAllOfLinksSelf](docs/MediaFileListAllOfLinksSelf.md)\n - [MediaFiles](docs/MediaFiles.md)\n - [MediaFilesEmbedded](docs/MediaFilesEmbedded.md)\n - [MediaFilesEmbeddedItemsInner](docs/MediaFilesEmbeddedItemsInner.md)\n - [MediaFilesEmbeddedItemsInnerAllOf](docs/MediaFilesEmbeddedItemsInnerAllOf.md)\n - [MediaFilesEmbeddedItemsInnerAllOf1](docs/MediaFilesEmbeddedItemsInnerAllOf1.md)\n - [MediaFilesEmbeddedItemsInnerAllOfLinks](docs/MediaFilesEmbeddedItemsInnerAllOfLinks.md)\n - [MediaFilesEmbeddedItemsInnerAllOfLinksDownload](docs/MediaFilesEmbeddedItemsInnerAllOfLinksDownload.md)\n - [MediaFilesEmbeddedItemsInnerAllOfLinksSelf](docs/MediaFilesEmbeddedItemsInnerAllOfLinksSelf.md)\n - [PAMAssetCategories](docs/PAMAssetCategories.md)\n - [PAMAssetCategoriesEmbedded](docs/PAMAssetCategoriesEmbedded.md)\n - [PAMAssetCategoriesEmbeddedItemsInner](docs/PAMAssetCategoriesEmbeddedItemsInner.md)\n - [PAMAssetCategoriesEmbeddedItemsInnerAllOf](docs/PAMAssetCategoriesEmbeddedItemsInnerAllOf.md)\n - [PAMAssetCategoriesEmbeddedItemsInnerAllOfLabels](docs/PAMAssetCategoriesEmbeddedItemsInnerAllOfLabels.md)\n - [PAMAssetTags](docs/PAMAssetTags.md)\n - [PAMAssetTagsEmbedded](docs/PAMAssetTagsEmbedded.md)\n - [PAMAssetTagsEmbeddedItemsInner](docs/PAMAssetTagsEmbeddedItemsInner.md)\n - [PAMAssetTagsEmbeddedItemsInnerAllOf](docs/PAMAssetTagsEmbeddedItemsInnerAllOf.md)\n - [PAMAssets](docs/PAMAssets.md)\n - [PAMAssetsEmbedded](docs/PAMAssetsEmbedded.md)\n - [PAMAssetsEmbeddedItemsInner](docs/PAMAssetsEmbeddedItemsInner.md)\n - [PAMAssetsEmbeddedItemsInnerAllOf](docs/PAMAssetsEmbeddedItemsInnerAllOf.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInner](docs/PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInner.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInnerLink](docs/PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInnerLink.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInnerLinkDownload](docs/PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInnerLinkDownload.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInnerLinkSelf](docs/PAMAssetsEmbeddedItemsInnerAllOfReferenceFilesInnerLinkSelf.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInner](docs/PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInner.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInnerLink](docs/PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInnerLink.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInnerLinkDownload](docs/PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInnerLinkDownload.md)\n - [PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInnerLinkSelf](docs/PAMAssetsEmbeddedItemsInnerAllOfVariationFilesInnerLinkSelf.md)\n - [Pagination](docs/Pagination.md)\n - [PatchAssetCategoriesRequest](docs/PatchAssetCategoriesRequest.md)\n - [PatchAssetsRequestInner](docs/PatchAssetsRequestInner.md)\n - [PatchAttributesAttributeCodeOptionsRequest](docs/PatchAttributesAttributeCodeOptionsRequest.md)\n - [PatchAttributesRequest](docs/PatchAttributesRequest.md)\n - [PatchCategoriesRequest](docs/PatchCategoriesRequest.md)\n - [PatchFamiliesFamilyCodeVariantsRequest](docs/PatchFamiliesFamilyCodeVariantsRequest.md)\n - [PatchFamiliesRequest](docs/PatchFamiliesRequest.md)\n - [PatchMeasurementFamilies200ResponseInner](docs/PatchMeasurementFamilies200ResponseInner.md)\n - [PatchMeasurementFamilies200ResponseInnerErrorsInner](docs/PatchMeasurementFamilies200ResponseInnerErrorsInner.md)\n - [PatchPamAssetsRequest](docs/PatchPamAssetsRequest.md)\n - [PatchProductModelsRequest](docs/PatchProductModelsRequest.md)\n - [PatchProducts200Response](docs/PatchProducts200Response.md)\n - [PatchProductsRequest](docs/PatchProductsRequest.md)\n - [PatchProductsUuid200Response](docs/PatchProductsUuid200Response.md)\n - [PatchProductsUuidRequest](docs/PatchProductsUuidRequest.md)\n - [PatchReferenceEntityRecords200ResponseInner](docs/PatchReferenceEntityRecords200ResponseInner.md)\n - [PatchReferenceEntityRecordsCodeRequest](docs/PatchReferenceEntityRecordsCodeRequest.md)\n - [PatchReferenceEntityRecordsRequestInner](docs/PatchReferenceEntityRecordsRequestInner.md)\n - [PostAppCatalogRequest](docs/PostAppCatalogRequest.md)\n - [PostMediaFilesRequest](docs/PostMediaFilesRequest.md)\n - [PostReferenceEntityMediaFilesRequest](docs/PostReferenceEntityMediaFilesRequest.md)\n - [PostReferenceFilesLocaleCode201Response](docs/PostReferenceFilesLocaleCode201Response.md)\n - [PostReferenceFilesLocaleCode201ResponseErrorsInner](docs/PostReferenceFilesLocaleCode201ResponseErrorsInner.md)\n - [PostReferenceFilesLocaleCodeRequest](docs/PostReferenceFilesLocaleCodeRequest.md)\n - [PostToken200Response](docs/PostToken200Response.md)\n - [PostTokenRequest](docs/PostTokenRequest.md)\n - [Product](docs/Product.md)\n - [ProductList](docs/ProductList.md)\n - [ProductListAllOf](docs/ProductListAllOf.md)\n - [ProductListAllOf1](docs/ProductListAllOf1.md)\n - [ProductListAllOf1Associations](docs/ProductListAllOf1Associations.md)\n - [ProductListAllOf1AssociationsAssociationTypeCode](docs/ProductListAllOf1AssociationsAssociationTypeCode.md)\n - [ProductListAllOf1Completenesses](docs/ProductListAllOf1Completenesses.md)\n - [ProductListAllOf1Metadata](docs/ProductListAllOf1Metadata.md)\n - [ProductListAllOf1QuantifiedAssociations](docs/ProductListAllOf1QuantifiedAssociations.md)\n - [ProductListAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCode](docs/ProductListAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCode.md)\n - [ProductListAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProductModels](docs/ProductListAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProductModels.md)\n - [ProductListAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProducts](docs/ProductListAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProducts.md)\n - [ProductListAllOfLinks](docs/ProductListAllOfLinks.md)\n - [ProductListAllOfLinksSelf](docs/ProductListAllOfLinksSelf.md)\n - [ProductModel](docs/ProductModel.md)\n - [ProductModelList](docs/ProductModelList.md)\n - [ProductModelListAllOf](docs/ProductModelListAllOf.md)\n - [ProductModelListAllOfAssociations](docs/ProductModelListAllOfAssociations.md)\n - [ProductModelListAllOfMetadata](docs/ProductModelListAllOfMetadata.md)\n - [ProductModelListAllOfQuantifiedAssociations](docs/ProductModelListAllOfQuantifiedAssociations.md)\n - [ProductModelListAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode](docs/ProductModelListAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode.md)\n - [ProductModels](docs/ProductModels.md)\n - [ProductModelsEmbedded](docs/ProductModelsEmbedded.md)\n - [ProductModelsEmbeddedItemsInner](docs/ProductModelsEmbeddedItemsInner.md)\n - [ProductModelsEmbeddedItemsInnerAllOf](docs/ProductModelsEmbeddedItemsInnerAllOf.md)\n - [ProductModelsEmbeddedItemsInnerAllOfAssociations](docs/ProductModelsEmbeddedItemsInnerAllOfAssociations.md)\n - [ProductModelsEmbeddedItemsInnerAllOfMetadata](docs/ProductModelsEmbeddedItemsInnerAllOfMetadata.md)\n - [ProductModelsEmbeddedItemsInnerAllOfQuantifiedAssociations](docs/ProductModelsEmbeddedItemsInnerAllOfQuantifiedAssociations.md)\n - [ProductModelsEmbeddedItemsInnerAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode](docs/ProductModelsEmbeddedItemsInnerAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode.md)\n - [ProductModelsEmbeddedItemsInnerAllOfValuesValueInner](docs/ProductModelsEmbeddedItemsInnerAllOfValuesValueInner.md)\n - [ProductUuid](docs/ProductUuid.md)\n - [ProductUuidList](docs/ProductUuidList.md)\n - [ProductUuidListAllOf](docs/ProductUuidListAllOf.md)\n - [ProductUuidListAllOfAssociations](docs/ProductUuidListAllOfAssociations.md)\n - [ProductUuidListAllOfAssociationsAssociationTypeCode](docs/ProductUuidListAllOfAssociationsAssociationTypeCode.md)\n - [ProductUuidListAllOfQuantifiedAssociations](docs/ProductUuidListAllOfQuantifiedAssociations.md)\n - [ProductUuidListAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode](docs/ProductUuidListAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode.md)\n - [ProductUuidListAllOfQuantifiedAssociationsQuantifiedAssociationTypeCodeProducts](docs/ProductUuidListAllOfQuantifiedAssociationsQuantifiedAssociationTypeCodeProducts.md)\n - [ProductUuids](docs/ProductUuids.md)\n - [ProductUuidsEmbedded](docs/ProductUuidsEmbedded.md)\n - [Products](docs/Products.md)\n - [Products1](docs/Products1.md)\n - [Products1Embedded](docs/Products1Embedded.md)\n - [Products1EmbeddedItemsInner](docs/Products1EmbeddedItemsInner.md)\n - [Products1EmbeddedItemsInnerAllOf](docs/Products1EmbeddedItemsInnerAllOf.md)\n - [Products1EmbeddedItemsInnerAllOfAssociations](docs/Products1EmbeddedItemsInnerAllOfAssociations.md)\n - [Products1EmbeddedItemsInnerAllOfAssociationsAssociationTypeCode](docs/Products1EmbeddedItemsInnerAllOfAssociationsAssociationTypeCode.md)\n - [Products1EmbeddedItemsInnerAllOfQuantifiedAssociations](docs/Products1EmbeddedItemsInnerAllOfQuantifiedAssociations.md)\n - [Products1EmbeddedItemsInnerAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode](docs/Products1EmbeddedItemsInnerAllOfQuantifiedAssociationsQuantifiedAssociationTypeCode.md)\n - [Products1EmbeddedItemsInnerAllOfQuantifiedAssociationsQuantifiedAssociationTypeCodeProductsInner](docs/Products1EmbeddedItemsInnerAllOfQuantifiedAssociationsQuantifiedAssociationTypeCodeProductsInner.md)\n - [Products2](docs/Products2.md)\n - [ProductsEmbedded](docs/ProductsEmbedded.md)\n - [ProductsEmbeddedItemsInner](docs/ProductsEmbeddedItemsInner.md)\n - [ProductsEmbeddedItemsInnerAllOf](docs/ProductsEmbeddedItemsInnerAllOf.md)\n - [ProductsEmbeddedItemsInnerAllOf1](docs/ProductsEmbeddedItemsInnerAllOf1.md)\n - [ProductsEmbeddedItemsInnerAllOf1Associations](docs/ProductsEmbeddedItemsInnerAllOf1Associations.md)\n - [ProductsEmbeddedItemsInnerAllOf1AssociationsAssociationTypeCode](docs/ProductsEmbeddedItemsInnerAllOf1AssociationsAssociationTypeCode.md)\n - [ProductsEmbeddedItemsInnerAllOf1CompletenessesInner](docs/ProductsEmbeddedItemsInnerAllOf1CompletenessesInner.md)\n - [ProductsEmbeddedItemsInnerAllOf1Metadata](docs/ProductsEmbeddedItemsInnerAllOf1Metadata.md)\n - [ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociations](docs/ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociations.md)\n - [ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCode](docs/ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCode.md)\n - [ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProductModelsInner](docs/ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProductModelsInner.md)\n - [ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProductsInner](docs/ProductsEmbeddedItemsInnerAllOf1QuantifiedAssociationsQuantifiedAssociationTypeCodeProductsInner.md)\n - [ProductsEmbeddedItemsInnerAllOf1ValuesValueInner](docs/ProductsEmbeddedItemsInnerAllOf1ValuesValueInner.md)\n - [ProductsEmbeddedItemsInnerAllOf1ValuesValueInnerLinkedData](docs/ProductsEmbeddedItemsInnerAllOf1ValuesValueInnerLinkedData.md)\n - [ProductsEmbeddedItemsInnerAllOfLinks](docs/ProductsEmbeddedItemsInnerAllOfLinks.md)\n - [ProductsEmbeddedItemsInnerAllOfLinksSelf](docs/ProductsEmbeddedItemsInnerAllOfLinksSelf.md)\n - [ProductsLinks](docs/ProductsLinks.md)\n - [ProductsLinksFirst](docs/ProductsLinksFirst.md)\n - [ProductsLinksNext](docs/ProductsLinksNext.md)\n - [ProductsLinksPrevious](docs/ProductsLinksPrevious.md)\n - [ProductsLinksSelf](docs/ProductsLinksSelf.md)\n - [PublishedProduct](docs/PublishedProduct.md)\n - [PublishedProductList](docs/PublishedProductList.md)\n - [PublishedProductListAllOf](docs/PublishedProductListAllOf.md)\n - [PublishedProductListAllOfAssociations](docs/PublishedProductListAllOfAssociations.md)\n - [PublishedProductListAllOfAssociationsAssociationTypeCode](docs/PublishedProductListAllOfAssociationsAssociationTypeCode.md)\n - [PublishedProducts](docs/PublishedProducts.md)\n - [PublishedProductsEmbedded](docs/PublishedProductsEmbedded.md)\n - [PublishedProductsEmbeddedItemsInner](docs/PublishedProductsEmbeddedItemsInner.md)\n - [PublishedProductsEmbeddedItemsInnerAllOf](docs/PublishedProductsEmbeddedItemsInnerAllOf.md)\n - [PublishedProductsEmbeddedItemsInnerAllOfAssociations](docs/PublishedProductsEmbeddedItemsInnerAllOfAssociations.md)\n - [PublishedProductsEmbeddedItemsInnerAllOfAssociationsAssociationTypeCode](docs/PublishedProductsEmbeddedItemsInnerAllOfAssociationsAssociationTypeCode.md)\n - [ReferenceEntities](docs/ReferenceEntities.md)\n - [ReferenceEntitiesEmbedded](docs/ReferenceEntitiesEmbedded.md)\n - [ReferenceEntitiesEmbeddedItemsInner](docs/ReferenceEntitiesEmbeddedItemsInner.md)\n - [ReferenceEntitiesEmbeddedItemsInnerAllOf](docs/ReferenceEntitiesEmbeddedItemsInnerAllOf.md)\n - [ReferenceEntitiesEmbeddedItemsInnerAllOf1](docs/ReferenceEntitiesEmbeddedItemsInnerAllOf1.md)\n - [ReferenceEntitiesEmbeddedItemsInnerAllOf1Labels](docs/ReferenceEntitiesEmbeddedItemsInnerAllOf1Labels.md)\n - [ReferenceEntitiesEmbeddedItemsInnerAllOfLinks](docs/ReferenceEntitiesEmbeddedItemsInnerAllOfLinks.md)\n - [ReferenceEntitiesEmbeddedItemsInnerAllOfLinksImageDownload](docs/ReferenceEntitiesEmbeddedItemsInnerAllOfLinksImageDownload.md)\n - [ReferenceEntitiesLinks](docs/ReferenceEntitiesLinks.md)\n - [ReferenceEntity](docs/ReferenceEntity.md)\n - [ReferenceEntityAllOf](docs/ReferenceEntityAllOf.md)\n - [ReferenceEntityAllOf1](docs/ReferenceEntityAllOf1.md)\n - [ReferenceEntityAllOf1Labels](docs/ReferenceEntityAllOf1Labels.md)\n - [ReferenceEntityAllOfLinks](docs/ReferenceEntityAllOfLinks.md)\n - [ReferenceEntityAllOfLinksImageDownload](docs/ReferenceEntityAllOfLinksImageDownload.md)\n - [ReferenceEntityAttribute](docs/ReferenceEntityAttribute.md)\n - [ReferenceEntityAttributeOption](docs/ReferenceEntityAttributeOption.md)\n - [ReferenceEntityItemList](docs/ReferenceEntityItemList.md)\n - [ReferenceEntityList](docs/ReferenceEntityList.md)\n - [ReferenceEntityListAllOf](docs/ReferenceEntityListAllOf.md)\n - [ReferenceEntityListAllOfLinks](docs/ReferenceEntityListAllOfLinks.md)\n - [ReferenceEntityRecord](docs/ReferenceEntityRecord.md)\n - [ReferenceEntityRecordEmbedded](docs/ReferenceEntityRecordEmbedded.md)\n - [ReferenceEntityRecordEmbeddedItemsInner](docs/ReferenceEntityRecordEmbeddedItemsInner.md)\n - [ReferenceEntityRecordEmbeddedItemsInnerAllOf](docs/ReferenceEntityRecordEmbeddedItemsInnerAllOf.md)\n - [ReferenceEntityRecordEmbeddedItemsInnerAllOfValuesValueInner](docs/ReferenceEntityRecordEmbeddedItemsInnerAllOfValuesValueInner.md)\n - [ReferenceEntityRecordItemList](docs/ReferenceEntityRecordItemList.md)\n - [ReferenceEntityRecordList](docs/ReferenceEntityRecordList.md)\n - [ReferenceEntityRecordListAllOf](docs/ReferenceEntityRecordListAllOf.md)\n - [SearchAfterPagination](docs/SearchAfterPagination.md)\n - [SeveralAssociationTypesPatchRequest](docs/SeveralAssociationTypesPatchRequest.md)\n - [SeveralAttributeGroupsPatchRequest](docs/SeveralAttributeGroupsPatchRequest.md)\n - [SeveralChannelsPatchRequest](docs/SeveralChannelsPatchRequest.md)\n\n\n## Documentation For Authorization\n\n All endpoints do not require authorization.\n\n## Author\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flabd%2Fakeneo-python-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flabd%2Fakeneo-python-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flabd%2Fakeneo-python-sdk/lists"}