/magento2-api-client

Magento 2 Api Client

Primary LanguagePHP

Magento2 Api Client

No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)

This PHP package is automatically generated by the Swagger Codegen project:

  • API version: 2.2
  • Build package: io.swagger.codegen.languages.PhpClientCodegen

Customizations

We needed to make several modifications to the generated swagger documentation from magneto in order to make client that's actually usable. These modifications are automated with the jq library and you can see the changes we make by looking at the Makefile.

Any Model

In order to support fields that might be of any type, we've introduced a new Any type in the definitions for magento. When you see any model property return this value, you'll need to understand that it's actually returning whatever value that's returned from the server which could be null, string, array, etc etc. So you'll need to test the type in your code like:

if (\is_array($attribute->getValue())) {
    // do something
} else {
    // do something else
}

Authentication

We also include security definitions for OAuth to enable Bearer token support.

Requirements

PHP 5.5 and later

Installation & Usage

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/krakphp/magento2-api-client.git"
    }
  ],
  "require": {
    "krak/magento2-api-client": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

    require_once('/path/to/./vendor/autoload.php');

Tests

To run the unit tests:

composer install
./vendor/bin/phpunit

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$apiInstance = new Krak\MagentoApiClient\Api\AnalyticsLinkProviderV1Api(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $result = $apiInstance->analyticsLinkProviderV1GetGet();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AnalyticsLinkProviderV1Api->analyticsLinkProviderV1GetGet: ', $e->getMessage(), PHP_EOL;
}

?>

Documentation for API Endpoints

All URIs are relative to http://ce22.vg/index.php/rest/default

Class Method HTTP request Description
AnalyticsLinkProviderV1Api analyticsLinkProviderV1GetGet GET /V1/analytics/link
BackendModuleServiceV1Api backendModuleServiceV1GetModulesGet GET /V1/modules
BundleProductLinkManagementV1Api bundleProductLinkManagementV1AddChildByProductSkuPost POST /V1/bundle-products/{sku}/links/{optionId}
BundleProductLinkManagementV1Api bundleProductLinkManagementV1GetChildrenGet GET /V1/bundle-products/{productSku}/children
BundleProductLinkManagementV1Api bundleProductLinkManagementV1RemoveChildDelete DELETE /V1/bundle-products/{sku}/options/{optionId}/children/{childSku}
BundleProductLinkManagementV1Api bundleProductLinkManagementV1SaveChildPut PUT /V1/bundle-products/{sku}/links/{id}
BundleProductOptionManagementV1Api bundleProductOptionManagementV1SavePost POST /V1/bundle-products/options/add
BundleProductOptionManagementV1Api bundleProductOptionManagementV1SavePut PUT /V1/bundle-products/options/{optionId}
BundleProductOptionRepositoryV1Api bundleProductOptionRepositoryV1DeleteByIdDelete DELETE /V1/bundle-products/{sku}/options/{optionId}
BundleProductOptionRepositoryV1Api bundleProductOptionRepositoryV1GetGet GET /V1/bundle-products/{sku}/options/{optionId}
BundleProductOptionRepositoryV1Api bundleProductOptionRepositoryV1GetListGet GET /V1/bundle-products/{sku}/options/all
BundleProductOptionTypeListV1Api bundleProductOptionTypeListV1GetItemsGet GET /V1/bundle-products/options/types
CatalogAttributeSetManagementV1Api catalogAttributeSetManagementV1CreatePost POST /V1/products/attribute-sets
CatalogAttributeSetRepositoryV1Api catalogAttributeSetRepositoryV1DeleteByIdDelete DELETE /V1/products/attribute-sets/{attributeSetId}
CatalogAttributeSetRepositoryV1Api catalogAttributeSetRepositoryV1GetGet GET /V1/products/attribute-sets/{attributeSetId}
CatalogAttributeSetRepositoryV1Api catalogAttributeSetRepositoryV1GetListGet GET /V1/products/attribute-sets/sets/list
CatalogAttributeSetRepositoryV1Api catalogAttributeSetRepositoryV1SavePut PUT /V1/products/attribute-sets/{attributeSetId}
CatalogBasePriceStorageV1Api catalogBasePriceStorageV1GetPost POST /V1/products/base-prices-information
CatalogBasePriceStorageV1Api catalogBasePriceStorageV1UpdatePost POST /V1/products/base-prices
CatalogCategoryAttributeOptionManagementV1Api catalogCategoryAttributeOptionManagementV1GetItemsGet GET /V1/categories/attributes/{attributeCode}/options
CatalogCategoryAttributeRepositoryV1Api catalogCategoryAttributeRepositoryV1GetGet GET /V1/categories/attributes/{attributeCode}
CatalogCategoryAttributeRepositoryV1Api catalogCategoryAttributeRepositoryV1GetListGet GET /V1/categories/attributes
CatalogCategoryLinkManagementV1Api catalogCategoryLinkManagementV1GetAssignedProductsGet GET /V1/categories/{categoryId}/products
CatalogCategoryLinkRepositoryV1Api catalogCategoryLinkRepositoryV1DeleteByIdsDelete DELETE /V1/categories/{categoryId}/products/{sku}
CatalogCategoryLinkRepositoryV1Api catalogCategoryLinkRepositoryV1SavePost POST /V1/categories/{categoryId}/products
CatalogCategoryLinkRepositoryV1Api catalogCategoryLinkRepositoryV1SavePut PUT /V1/categories/{categoryId}/products
CatalogCategoryListV1Api catalogCategoryListV1GetListGet GET /V1/categories/list
CatalogCategoryManagementV1Api catalogCategoryManagementV1GetTreeGet GET /V1/categories
CatalogCategoryManagementV1Api catalogCategoryManagementV1MovePut PUT /V1/categories/{categoryId}/move
CatalogCategoryRepositoryV1Api catalogCategoryRepositoryV1DeleteByIdentifierDelete DELETE /V1/categories/{categoryId}
CatalogCategoryRepositoryV1Api catalogCategoryRepositoryV1GetGet GET /V1/categories/{categoryId}
CatalogCategoryRepositoryV1Api catalogCategoryRepositoryV1SavePost POST /V1/categories
CatalogCategoryRepositoryV1Api catalogCategoryRepositoryV1SavePut PUT /V1/categories/{id}
CatalogCostStorageV1Api catalogCostStorageV1DeletePost POST /V1/products/cost-delete
CatalogCostStorageV1Api catalogCostStorageV1GetPost POST /V1/products/cost-information
CatalogCostStorageV1Api catalogCostStorageV1UpdatePost POST /V1/products/cost
CatalogInventoryStockRegistryV1Api catalogInventoryStockRegistryV1GetLowStockItemsGet GET /V1/stockItems/lowStock/
CatalogInventoryStockRegistryV1Api catalogInventoryStockRegistryV1GetStockItemBySkuGet GET /V1/stockItems/{productSku}
CatalogInventoryStockRegistryV1Api catalogInventoryStockRegistryV1GetStockStatusBySkuGet GET /V1/stockStatuses/{productSku}
CatalogInventoryStockRegistryV1Api catalogInventoryStockRegistryV1UpdateStockItemBySkuPut PUT /V1/products/{productSku}/stockItems/{itemId}
CatalogProductAttributeGroupRepositoryV1Api catalogProductAttributeGroupRepositoryV1DeleteByIdDelete DELETE /V1/products/attribute-sets/groups/{groupId}
CatalogProductAttributeGroupRepositoryV1Api catalogProductAttributeGroupRepositoryV1GetListGet GET /V1/products/attribute-sets/groups/list
CatalogProductAttributeGroupRepositoryV1Api catalogProductAttributeGroupRepositoryV1SavePost POST /V1/products/attribute-sets/groups
CatalogProductAttributeGroupRepositoryV1Api catalogProductAttributeGroupRepositoryV1SavePut PUT /V1/products/attribute-sets/{attributeSetId}/groups
CatalogProductAttributeManagementV1Api catalogProductAttributeManagementV1AssignPost POST /V1/products/attribute-sets/attributes
CatalogProductAttributeManagementV1Api catalogProductAttributeManagementV1GetAttributesGet GET /V1/products/attribute-sets/{attributeSetId}/attributes
CatalogProductAttributeManagementV1Api catalogProductAttributeManagementV1UnassignDelete DELETE /V1/products/attribute-sets/{attributeSetId}/attributes/{attributeCode}
CatalogProductAttributeMediaGalleryManagementV1Api catalogProductAttributeMediaGalleryManagementV1CreatePost POST /V1/products/{sku}/media
CatalogProductAttributeMediaGalleryManagementV1Api catalogProductAttributeMediaGalleryManagementV1GetGet GET /V1/products/{sku}/media/{entryId}
CatalogProductAttributeMediaGalleryManagementV1Api catalogProductAttributeMediaGalleryManagementV1GetListGet GET /V1/products/{sku}/media
CatalogProductAttributeMediaGalleryManagementV1Api catalogProductAttributeMediaGalleryManagementV1RemoveDelete DELETE /V1/products/{sku}/media/{entryId}
CatalogProductAttributeMediaGalleryManagementV1Api catalogProductAttributeMediaGalleryManagementV1UpdatePut PUT /V1/products/{sku}/media/{entryId}
CatalogProductAttributeOptionManagementV1Api catalogProductAttributeOptionManagementV1AddPost POST /V1/products/attributes/{attributeCode}/options
CatalogProductAttributeOptionManagementV1Api catalogProductAttributeOptionManagementV1DeleteDelete DELETE /V1/products/attributes/{attributeCode}/options/{optionId}
CatalogProductAttributeOptionManagementV1Api catalogProductAttributeOptionManagementV1GetItemsGet GET /V1/products/attributes/{attributeCode}/options
CatalogProductAttributeRepositoryV1Api catalogProductAttributeRepositoryV1DeleteByIdDelete DELETE /V1/products/attributes/{attributeCode}
CatalogProductAttributeRepositoryV1Api catalogProductAttributeRepositoryV1GetGet GET /V1/products/attributes/{attributeCode}
CatalogProductAttributeRepositoryV1Api catalogProductAttributeRepositoryV1GetListGet GET /V1/products/attributes
CatalogProductAttributeRepositoryV1Api catalogProductAttributeRepositoryV1SavePost POST /V1/products/attributes
CatalogProductAttributeRepositoryV1Api catalogProductAttributeRepositoryV1SavePut PUT /V1/products/attributes/{attributeCode}
CatalogProductAttributeTypesListV1Api catalogProductAttributeTypesListV1GetItemsGet GET /V1/products/attributes/types
CatalogProductCustomOptionRepositoryV1Api catalogProductCustomOptionRepositoryV1DeleteByIdentifierDelete DELETE /V1/products/{sku}/options/{optionId}
CatalogProductCustomOptionRepositoryV1Api catalogProductCustomOptionRepositoryV1GetGet GET /V1/products/{sku}/options/{optionId}
CatalogProductCustomOptionRepositoryV1Api catalogProductCustomOptionRepositoryV1GetListGet GET /V1/products/{sku}/options
CatalogProductCustomOptionRepositoryV1Api catalogProductCustomOptionRepositoryV1SavePost POST /V1/products/options
CatalogProductCustomOptionRepositoryV1Api catalogProductCustomOptionRepositoryV1SavePut PUT /V1/products/options/{optionId}
CatalogProductCustomOptionTypeListV1Api catalogProductCustomOptionTypeListV1GetItemsGet GET /V1/products/options/types
CatalogProductLinkManagementV1Api catalogProductLinkManagementV1GetLinkedItemsByTypeGet GET /V1/products/{sku}/links/{type}
CatalogProductLinkManagementV1Api catalogProductLinkManagementV1SetProductLinksPost POST /V1/products/{sku}/links
CatalogProductLinkRepositoryV1Api catalogProductLinkRepositoryV1DeleteByIdDelete DELETE /V1/products/{sku}/links/{type}/{linkedProductSku}
CatalogProductLinkRepositoryV1Api catalogProductLinkRepositoryV1SavePut PUT /V1/products/{sku}/links
CatalogProductLinkTypeListV1Api catalogProductLinkTypeListV1GetItemAttributesGet GET /V1/products/links/{type}/attributes
CatalogProductLinkTypeListV1Api catalogProductLinkTypeListV1GetItemsGet GET /V1/products/links/types
CatalogProductMediaAttributeManagementV1Api catalogProductMediaAttributeManagementV1GetListGet GET /V1/products/media/types/{attributeSetName}
CatalogProductRenderListV1Api catalogProductRenderListV1GetListGet GET /V1/products-render-info
CatalogProductRepositoryV1Api catalogProductRepositoryV1DeleteByIdDelete DELETE /V1/products/{sku}
CatalogProductRepositoryV1Api catalogProductRepositoryV1GetGet GET /V1/products/{sku}
CatalogProductRepositoryV1Api catalogProductRepositoryV1GetListGet GET /V1/products
CatalogProductRepositoryV1Api catalogProductRepositoryV1SavePost POST /V1/products
CatalogProductRepositoryV1Api catalogProductRepositoryV1SavePut PUT /V1/products/{sku}
CatalogProductTierPriceManagementV1Api catalogProductTierPriceManagementV1AddPost POST /V1/products/{sku}/group-prices/{customerGroupId}/tiers/{qty}/price/{price}
CatalogProductTierPriceManagementV1Api catalogProductTierPriceManagementV1GetListGet GET /V1/products/{sku}/group-prices/{customerGroupId}/tiers
CatalogProductTierPriceManagementV1Api catalogProductTierPriceManagementV1RemoveDelete DELETE /V1/products/{sku}/group-prices/{customerGroupId}/tiers/{qty}
CatalogProductTypeListV1Api catalogProductTypeListV1GetProductTypesGet GET /V1/products/types
CatalogProductWebsiteLinkRepositoryV1Api catalogProductWebsiteLinkRepositoryV1DeleteByIdDelete DELETE /V1/products/{sku}/websites/{websiteId}
CatalogProductWebsiteLinkRepositoryV1Api catalogProductWebsiteLinkRepositoryV1SavePost POST /V1/products/{sku}/websites
CatalogProductWebsiteLinkRepositoryV1Api catalogProductWebsiteLinkRepositoryV1SavePut PUT /V1/products/{sku}/websites
CatalogSpecialPriceStorageV1Api catalogSpecialPriceStorageV1DeletePost POST /V1/products/special-price-delete
CatalogSpecialPriceStorageV1Api catalogSpecialPriceStorageV1GetPost POST /V1/products/special-price-information
CatalogSpecialPriceStorageV1Api catalogSpecialPriceStorageV1UpdatePost POST /V1/products/special-price
CatalogTierPriceStorageV1Api catalogTierPriceStorageV1DeletePost POST /V1/products/tier-prices-delete
CatalogTierPriceStorageV1Api catalogTierPriceStorageV1GetPost POST /V1/products/tier-prices-information
CatalogTierPriceStorageV1Api catalogTierPriceStorageV1ReplacePut PUT /V1/products/tier-prices
CatalogTierPriceStorageV1Api catalogTierPriceStorageV1UpdatePost POST /V1/products/tier-prices
CheckoutAgreementsCheckoutAgreementsRepositoryV1Api checkoutAgreementsCheckoutAgreementsRepositoryV1GetListGet GET /V1/carts/licence
CheckoutGuestPaymentInformationManagementV1Api checkoutGuestPaymentInformationManagementV1GetPaymentInformationGet GET /V1/guest-carts/{cartId}/payment-information
CheckoutGuestPaymentInformationManagementV1Api checkoutGuestPaymentInformationManagementV1SavePaymentInformationAndPlaceOrderPost POST /V1/guest-carts/{cartId}/payment-information
CheckoutGuestPaymentInformationManagementV1Api checkoutGuestPaymentInformationManagementV1SavePaymentInformationPost POST /V1/guest-carts/{cartId}/set-payment-information
CheckoutGuestShippingInformationManagementV1Api checkoutGuestShippingInformationManagementV1SaveAddressInformationPost POST /V1/guest-carts/{cartId}/shipping-information
CheckoutGuestTotalsInformationManagementV1Api checkoutGuestTotalsInformationManagementV1CalculatePost POST /V1/guest-carts/{cartId}/totals-information
CheckoutPaymentInformationManagementV1Api checkoutPaymentInformationManagementV1GetPaymentInformationGet GET /V1/carts/mine/payment-information
CheckoutPaymentInformationManagementV1Api checkoutPaymentInformationManagementV1SavePaymentInformationAndPlaceOrderPost POST /V1/carts/mine/payment-information
CheckoutPaymentInformationManagementV1Api checkoutPaymentInformationManagementV1SavePaymentInformationPost POST /V1/carts/mine/set-payment-information
CheckoutShippingInformationManagementV1Api checkoutShippingInformationManagementV1SaveAddressInformationPost POST /V1/carts/mine/shipping-information
CheckoutShippingInformationManagementV1Api checkoutShippingInformationManagementV1SaveAddressInformationPost_0 POST /V1/carts/{cartId}/shipping-information
CheckoutTotalsInformationManagementV1Api checkoutTotalsInformationManagementV1CalculatePost POST /V1/carts/{cartId}/totals-information
CheckoutTotalsInformationManagementV1Api checkoutTotalsInformationManagementV1CalculatePost_0 POST /V1/carts/mine/totals-information
CmsBlockRepositoryV1Api cmsBlockRepositoryV1DeleteByIdDelete DELETE /V1/cmsBlock/{blockId}
CmsBlockRepositoryV1Api cmsBlockRepositoryV1GetByIdGet GET /V1/cmsBlock/{blockId}
CmsBlockRepositoryV1Api cmsBlockRepositoryV1GetListGet GET /V1/cmsBlock/search
CmsBlockRepositoryV1Api cmsBlockRepositoryV1SavePost POST /V1/cmsBlock
CmsBlockRepositoryV1Api cmsBlockRepositoryV1SavePut PUT /V1/cmsBlock/{id}
CmsPageRepositoryV1Api cmsPageRepositoryV1DeleteByIdDelete DELETE /V1/cmsPage/{pageId}
CmsPageRepositoryV1Api cmsPageRepositoryV1GetByIdGet GET /V1/cmsPage/{pageId}
CmsPageRepositoryV1Api cmsPageRepositoryV1GetListGet GET /V1/cmsPage/search
CmsPageRepositoryV1Api cmsPageRepositoryV1SavePost POST /V1/cmsPage
CmsPageRepositoryV1Api cmsPageRepositoryV1SavePut PUT /V1/cmsPage/{id}
CompanyAclV1Api companyAclV1AssignRolesPut PUT /V1/company/assignRoles
CompanyAclV1Api companyAclV1GetUsersByRoleIdGet GET /V1/company/role/{roleId}/users
CompanyCompanyHierarchyV1Api companyCompanyHierarchyV1GetCompanyHierarchyGet GET /V1/hierarchy/{id}
CompanyCompanyHierarchyV1Api companyCompanyHierarchyV1MoveNodePut PUT /V1/hierarchy/move/{id}
CompanyCompanyRepositoryV1Api companyCompanyRepositoryV1DeleteByIdDelete DELETE /V1/company/{companyId}
CompanyCompanyRepositoryV1Api companyCompanyRepositoryV1GetGet GET /V1/company/{companyId}
CompanyCompanyRepositoryV1Api companyCompanyRepositoryV1GetListGet GET /V1/company/
CompanyCompanyRepositoryV1Api companyCompanyRepositoryV1SavePost POST /V1/company/
CompanyCompanyRepositoryV1Api companyCompanyRepositoryV1SavePut PUT /V1/company/{companyId}
CompanyCreditCreditBalanceManagementV1Api companyCreditCreditBalanceManagementV1DecreasePost POST /V1/companyCredits/{creditId}/decreaseBalance
CompanyCreditCreditBalanceManagementV1Api companyCreditCreditBalanceManagementV1IncreasePost POST /V1/companyCredits/{creditId}/increaseBalance
CompanyCreditCreditHistoryManagementV1Api companyCreditCreditHistoryManagementV1GetListGet GET /V1/companyCredits/history
CompanyCreditCreditHistoryManagementV1Api companyCreditCreditHistoryManagementV1UpdatePut PUT /V1/companyCredits/history/{historyId}
CompanyCreditCreditLimitManagementV1Api companyCreditCreditLimitManagementV1GetCreditByCompanyIdGet GET /V1/companyCredits/company/{companyId}
CompanyCreditCreditLimitRepositoryV1Api companyCreditCreditLimitRepositoryV1GetGet GET /V1/companyCredits/{creditId}
CompanyCreditCreditLimitRepositoryV1Api companyCreditCreditLimitRepositoryV1GetListGet GET /V1/companyCredits/
CompanyCreditCreditLimitRepositoryV1Api companyCreditCreditLimitRepositoryV1SavePut PUT /V1/companyCredits/{id}
CompanyRoleRepositoryV1Api companyRoleRepositoryV1DeleteDelete DELETE /V1/company/role/{roleId}
CompanyRoleRepositoryV1Api companyRoleRepositoryV1GetGet GET /V1/company/role/{roleId}
CompanyRoleRepositoryV1Api companyRoleRepositoryV1GetListGet GET /V1/company/role/
CompanyRoleRepositoryV1Api companyRoleRepositoryV1SavePost POST /V1/company/role/
CompanyRoleRepositoryV1Api companyRoleRepositoryV1SavePut PUT /V1/company/role/{id}
CompanyTeamRepositoryV1Api companyTeamRepositoryV1CreatePost POST /V1/team/{companyId}
CompanyTeamRepositoryV1Api companyTeamRepositoryV1DeleteByIdDelete DELETE /V1/team/{teamId}
CompanyTeamRepositoryV1Api companyTeamRepositoryV1GetGet GET /V1/team/{teamId}
CompanyTeamRepositoryV1Api companyTeamRepositoryV1GetListGet GET /V1/team/
CompanyTeamRepositoryV1Api companyTeamRepositoryV1SavePut PUT /V1/team/{teamId}
ConfigurableProductConfigurableProductManagementV1Api configurableProductConfigurableProductManagementV1GenerateVariationPut PUT /V1/configurable-products/variation
ConfigurableProductLinkManagementV1Api configurableProductLinkManagementV1AddChildPost POST /V1/configurable-products/{sku}/child
ConfigurableProductLinkManagementV1Api configurableProductLinkManagementV1GetChildrenGet GET /V1/configurable-products/{sku}/children
ConfigurableProductLinkManagementV1Api configurableProductLinkManagementV1RemoveChildDelete DELETE /V1/configurable-products/{sku}/children/{childSku}
ConfigurableProductOptionRepositoryV1Api configurableProductOptionRepositoryV1DeleteByIdDelete DELETE /V1/configurable-products/{sku}/options/{id}
ConfigurableProductOptionRepositoryV1Api configurableProductOptionRepositoryV1GetGet GET /V1/configurable-products/{sku}/options/{id}
ConfigurableProductOptionRepositoryV1Api configurableProductOptionRepositoryV1GetListGet GET /V1/configurable-products/{sku}/options/all
ConfigurableProductOptionRepositoryV1Api configurableProductOptionRepositoryV1SavePost POST /V1/configurable-products/{sku}/options
ConfigurableProductOptionRepositoryV1Api configurableProductOptionRepositoryV1SavePut PUT /V1/configurable-products/{sku}/options/{id}
CustomerAccountManagementV1Api customerAccountManagementV1ActivateByIdPut PUT /V1/customers/me/activate
CustomerAccountManagementV1Api customerAccountManagementV1ActivatePut PUT /V1/customers/{email}/activate
CustomerAccountManagementV1Api customerAccountManagementV1ChangePasswordByIdPut PUT /V1/customers/me/password
CustomerAccountManagementV1Api customerAccountManagementV1CreateAccountPost POST /V1/customers
CustomerAccountManagementV1Api customerAccountManagementV1GetConfirmationStatusGet GET /V1/customers/{customerId}/confirm
CustomerAccountManagementV1Api customerAccountManagementV1GetDefaultBillingAddressGet GET /V1/customers/me/billingAddress
CustomerAccountManagementV1Api customerAccountManagementV1GetDefaultBillingAddressGet_0 GET /V1/customers/{customerId}/billingAddress
CustomerAccountManagementV1Api customerAccountManagementV1GetDefaultShippingAddressGet GET /V1/customers/me/shippingAddress
CustomerAccountManagementV1Api customerAccountManagementV1GetDefaultShippingAddressGet_0 GET /V1/customers/{customerId}/shippingAddress
CustomerAccountManagementV1Api customerAccountManagementV1InitiatePasswordResetPut PUT /V1/customers/password
CustomerAccountManagementV1Api customerAccountManagementV1IsEmailAvailablePost POST /V1/customers/isEmailAvailable
CustomerAccountManagementV1Api customerAccountManagementV1IsReadonlyGet GET /V1/customers/{customerId}/permissions/readonly
CustomerAccountManagementV1Api customerAccountManagementV1ResendConfirmationPost POST /V1/customers/confirm
CustomerAccountManagementV1Api customerAccountManagementV1ResetPasswordPost POST /V1/customers/resetPassword
CustomerAccountManagementV1Api customerAccountManagementV1ValidatePut PUT /V1/customers/validate
CustomerAccountManagementV1Api customerAccountManagementV1ValidateResetPasswordLinkTokenGet GET /V1/customers/{customerId}/password/resetLinkToken/{resetPasswordLinkToken}
CustomerAddressMetadataV1Api customerAddressMetadataV1GetAllAttributesMetadataGet GET /V1/attributeMetadata/customerAddress
CustomerAddressMetadataV1Api customerAddressMetadataV1GetAttributeMetadataGet GET /V1/attributeMetadata/customerAddress/attribute/{attributeCode}
CustomerAddressMetadataV1Api customerAddressMetadataV1GetAttributesGet GET /V1/attributeMetadata/customerAddress/form/{formCode}
CustomerAddressMetadataV1Api customerAddressMetadataV1GetCustomAttributesMetadataGet GET /V1/attributeMetadata/customerAddress/custom
CustomerAddressRepositoryV1Api customerAddressRepositoryV1DeleteByIdDelete DELETE /V1/addresses/{addressId}
CustomerAddressRepositoryV1Api customerAddressRepositoryV1GetByIdGet GET /V1/customers/addresses/{addressId}
CustomerBalanceBalanceManagementV1Api customerBalanceBalanceManagementV1ApplyPost POST /V1/carts/mine/balance/apply
CustomerCustomerGroupConfigV1Api customerCustomerGroupConfigV1SetDefaultCustomerGroupPut PUT /V1/customerGroups/default/{id}
CustomerCustomerMetadataV1Api customerCustomerMetadataV1GetAllAttributesMetadataGet GET /V1/attributeMetadata/customer
CustomerCustomerMetadataV1Api customerCustomerMetadataV1GetAttributeMetadataGet GET /V1/attributeMetadata/customer/attribute/{attributeCode}
CustomerCustomerMetadataV1Api customerCustomerMetadataV1GetAttributesGet GET /V1/attributeMetadata/customer/form/{formCode}
CustomerCustomerMetadataV1Api customerCustomerMetadataV1GetCustomAttributesMetadataGet GET /V1/attributeMetadata/customer/custom
CustomerCustomerRepositoryV1Api customerCustomerRepositoryV1DeleteByIdDelete DELETE /V1/customers/{customerId}
CustomerCustomerRepositoryV1Api customerCustomerRepositoryV1GetByIdGet GET /V1/customers/{customerId}
CustomerCustomerRepositoryV1Api customerCustomerRepositoryV1GetByIdGet_0 GET /V1/customers/me
CustomerCustomerRepositoryV1Api customerCustomerRepositoryV1GetListGet GET /V1/customers/search
CustomerCustomerRepositoryV1Api customerCustomerRepositoryV1SavePut PUT /V1/customers/{customerId}
CustomerCustomerRepositoryV1Api customerCustomerRepositoryV1SavePut_0 PUT /V1/customers/me
CustomerGroupManagementV1Api customerGroupManagementV1GetDefaultGroupGet GET /V1/customerGroups/default/{storeId}
CustomerGroupManagementV1Api customerGroupManagementV1GetDefaultGroupGet_0 GET /V1/customerGroups/default
CustomerGroupManagementV1Api customerGroupManagementV1IsReadonlyGet GET /V1/customerGroups/{id}/permissions
CustomerGroupRepositoryV1Api customerGroupRepositoryV1DeleteByIdDelete DELETE /V1/customerGroups/{id}
CustomerGroupRepositoryV1Api customerGroupRepositoryV1GetByIdGet GET /V1/customerGroups/{id}
CustomerGroupRepositoryV1Api customerGroupRepositoryV1GetListGet GET /V1/customerGroups/search
CustomerGroupRepositoryV1Api customerGroupRepositoryV1SavePost POST /V1/customerGroups
CustomerGroupRepositoryV1Api customerGroupRepositoryV1SavePut PUT /V1/customerGroups/{id}
DirectoryCountryInformationAcquirerV1Api directoryCountryInformationAcquirerV1GetCountriesInfoGet GET /V1/directory/countries
DirectoryCountryInformationAcquirerV1Api directoryCountryInformationAcquirerV1GetCountryInfoGet GET /V1/directory/countries/{countryId}
DirectoryCurrencyInformationAcquirerV1Api directoryCurrencyInformationAcquirerV1GetCurrencyInfoGet GET /V1/directory/currency
DownloadableLinkRepositoryV1Api downloadableLinkRepositoryV1DeleteDelete DELETE /V1/products/downloadable-links/{id}
DownloadableLinkRepositoryV1Api downloadableLinkRepositoryV1GetListGet GET /V1/products/{sku}/downloadable-links
DownloadableLinkRepositoryV1Api downloadableLinkRepositoryV1SavePost POST /V1/products/{sku}/downloadable-links
DownloadableLinkRepositoryV1Api downloadableLinkRepositoryV1SavePut PUT /V1/products/{sku}/downloadable-links/{id}
DownloadableSampleRepositoryV1Api downloadableSampleRepositoryV1DeleteDelete DELETE /V1/products/downloadable-links/samples/{id}
DownloadableSampleRepositoryV1Api downloadableSampleRepositoryV1GetListGet GET /V1/products/{sku}/downloadable-links/samples
DownloadableSampleRepositoryV1Api downloadableSampleRepositoryV1SavePost POST /V1/products/{sku}/downloadable-links/samples
DownloadableSampleRepositoryV1Api downloadableSampleRepositoryV1SavePut PUT /V1/products/{sku}/downloadable-links/samples/{id}
EavAttributeSetManagementV1Api eavAttributeSetManagementV1CreatePost POST /V1/eav/attribute-sets
EavAttributeSetRepositoryV1Api eavAttributeSetRepositoryV1DeleteByIdDelete DELETE /V1/eav/attribute-sets/{attributeSetId}
EavAttributeSetRepositoryV1Api eavAttributeSetRepositoryV1GetGet GET /V1/eav/attribute-sets/{attributeSetId}
EavAttributeSetRepositoryV1Api eavAttributeSetRepositoryV1GetListGet GET /V1/eav/attribute-sets/list
EavAttributeSetRepositoryV1Api eavAttributeSetRepositoryV1SavePut PUT /V1/eav/attribute-sets/{attributeSetId}
GiftCardAccountGiftCardAccountManagementV1Api giftCardAccountGiftCardAccountManagementV1CheckGiftCardGet GET /V1/carts/mine/checkGiftCard/{giftCardCode}
GiftCardAccountGiftCardAccountManagementV1Api giftCardAccountGiftCardAccountManagementV1DeleteByQuoteIdDelete DELETE /V1/carts/{cartId}/giftCards/{giftCardCode}
GiftCardAccountGiftCardAccountManagementV1Api giftCardAccountGiftCardAccountManagementV1DeleteByQuoteIdDelete_0 DELETE /V1/carts/mine/giftCards/{giftCardCode}
GiftCardAccountGiftCardAccountManagementV1Api giftCardAccountGiftCardAccountManagementV1GetListByQuoteIdGet GET /V1/carts/{quoteId}/giftCards
GiftCardAccountGiftCardAccountManagementV1Api giftCardAccountGiftCardAccountManagementV1SaveByQuoteIdPost POST /V1/carts/mine/giftCards
GiftCardAccountGiftCardAccountManagementV1Api giftCardAccountGiftCardAccountManagementV1SaveByQuoteIdPut PUT /V1/carts/{cartId}/giftCards
GiftCardAccountGuestGiftCardAccountManagementV1Api giftCardAccountGuestGiftCardAccountManagementV1AddGiftCardPost POST /V1/carts/guest-carts/{cartId}/giftCards
GiftCardAccountGuestGiftCardAccountManagementV1Api giftCardAccountGuestGiftCardAccountManagementV1CheckGiftCardGet GET /V1/carts/guest-carts/{cartId}/checkGiftCard/{giftCardCode}
GiftCardAccountGuestGiftCardAccountManagementV1Api giftCardAccountGuestGiftCardAccountManagementV1DeleteByQuoteIdDelete DELETE /V1/carts/guest-carts/{cartId}/giftCards/{giftCardCode}
GiftMessageCartRepositoryV1Api giftMessageCartRepositoryV1GetGet GET /V1/carts/{cartId}/gift-message
GiftMessageCartRepositoryV1Api giftMessageCartRepositoryV1GetGet_0 GET /V1/carts/mine/gift-message
GiftMessageCartRepositoryV1Api giftMessageCartRepositoryV1SavePost POST /V1/carts/{cartId}/gift-message
GiftMessageCartRepositoryV1Api giftMessageCartRepositoryV1SavePost_0 POST /V1/carts/mine/gift-message
GiftMessageGuestCartRepositoryV1Api giftMessageGuestCartRepositoryV1GetGet GET /V1/guest-carts/{cartId}/gift-message
GiftMessageGuestCartRepositoryV1Api giftMessageGuestCartRepositoryV1SavePost POST /V1/guest-carts/{cartId}/gift-message
GiftMessageGuestItemRepositoryV1Api giftMessageGuestItemRepositoryV1GetGet GET /V1/guest-carts/{cartId}/gift-message/{itemId}
GiftMessageGuestItemRepositoryV1Api giftMessageGuestItemRepositoryV1SavePost POST /V1/guest-carts/{cartId}/gift-message/{itemId}
GiftMessageItemRepositoryV1Api giftMessageItemRepositoryV1GetGet GET /V1/carts/{cartId}/gift-message/{itemId}
GiftMessageItemRepositoryV1Api giftMessageItemRepositoryV1GetGet_0 GET /V1/carts/mine/gift-message/{itemId}
GiftMessageItemRepositoryV1Api giftMessageItemRepositoryV1SavePost POST /V1/carts/{cartId}/gift-message/{itemId}
GiftMessageItemRepositoryV1Api giftMessageItemRepositoryV1SavePost_0 POST /V1/carts/mine/gift-message/{itemId}
GiftRegistryGuestCartShippingMethodManagementV1Api giftRegistryGuestCartShippingMethodManagementV1EstimateByRegistryIdPost POST /V1/guest-giftregistry/{cartId}/estimate-shipping-methods
GiftRegistryShippingMethodManagementV1Api giftRegistryShippingMethodManagementV1EstimateByRegistryIdPost POST /V1/giftregistry/mine/estimate-shipping-methods
GiftWrappingWrappingRepositoryV1Api giftWrappingWrappingRepositoryV1DeleteByIdDelete DELETE /V1/gift-wrappings/{id}
GiftWrappingWrappingRepositoryV1Api giftWrappingWrappingRepositoryV1GetGet GET /V1/gift-wrappings/{id}
GiftWrappingWrappingRepositoryV1Api giftWrappingWrappingRepositoryV1GetListGet GET /V1/gift-wrappings
GiftWrappingWrappingRepositoryV1Api giftWrappingWrappingRepositoryV1SavePost POST /V1/gift-wrappings
GiftWrappingWrappingRepositoryV1Api giftWrappingWrappingRepositoryV1SavePut PUT /V1/gift-wrappings/{wrappingId}
IntegrationAdminTokenServiceV1Api integrationAdminTokenServiceV1CreateAdminAccessTokenPost POST /V1/integration/admin/token
IntegrationCustomerTokenServiceV1Api integrationCustomerTokenServiceV1CreateCustomerAccessTokenPost POST /V1/integration/customer/token
NegotiableQuoteAttachmentContentManagementV1Api negotiableQuoteAttachmentContentManagementV1GetGet GET /V1/negotiableQuote/attachmentContent
NegotiableQuoteBillingAddressManagementV1Api negotiableQuoteBillingAddressManagementV1AssignPost POST /V1/negotiable-carts/{cartId}/billing-address
NegotiableQuoteBillingAddressManagementV1Api negotiableQuoteBillingAddressManagementV1GetGet GET /V1/negotiable-carts/{cartId}/billing-address
NegotiableQuoteCartTotalRepositoryV1Api negotiableQuoteCartTotalRepositoryV1GetGet GET /V1/negotiable-carts/{cartId}/totals
NegotiableQuoteCommentLocatorV1Api negotiableQuoteCommentLocatorV1GetListForQuoteGet GET /V1/negotiableQuote/{quoteId}/comments
NegotiableQuoteCouponManagementV1Api negotiableQuoteCouponManagementV1RemoveDelete DELETE /V1/negotiable-carts/{cartId}/coupons
NegotiableQuoteCouponManagementV1Api negotiableQuoteCouponManagementV1SetPut PUT /V1/negotiable-carts/{cartId}/coupons/{couponCode}
NegotiableQuoteGiftCardAccountManagementV1Api negotiableQuoteGiftCardAccountManagementV1DeleteByQuoteIdDelete DELETE /V1/negotiable-carts/{cartId}/giftCards/{giftCardCode}
NegotiableQuoteGiftCardAccountManagementV1Api negotiableQuoteGiftCardAccountManagementV1SaveByQuoteIdPost POST /V1/negotiable-carts/{cartId}/giftCards
NegotiableQuoteNegotiableCartRepositoryV1Api negotiableQuoteNegotiableCartRepositoryV1SavePut PUT /V1/negotiableQuote/{quoteId}
NegotiableQuoteNegotiableQuoteManagementV1Api negotiableQuoteNegotiableQuoteManagementV1AdminSendPost POST /V1/negotiableQuote/submitToCustomer
NegotiableQuoteNegotiableQuoteManagementV1Api negotiableQuoteNegotiableQuoteManagementV1CreatePost POST /V1/negotiableQuote/request
NegotiableQuoteNegotiableQuoteManagementV1Api negotiableQuoteNegotiableQuoteManagementV1DeclinePost POST /V1/negotiableQuote/decline
NegotiableQuoteNegotiableQuotePriceManagementV1Api negotiableQuoteNegotiableQuotePriceManagementV1PricesUpdatedPost POST /V1/negotiableQuote/pricesUpdated
NegotiableQuoteNegotiableQuoteShippingManagementV1Api negotiableQuoteNegotiableQuoteShippingManagementV1SetShippingMethodPut PUT /V1/negotiableQuote/{quoteId}/shippingMethod
NegotiableQuotePaymentInformationManagementV1Api negotiableQuotePaymentInformationManagementV1GetPaymentInformationGet GET /V1/negotiable-carts/{cartId}/payment-information
NegotiableQuotePaymentInformationManagementV1Api negotiableQuotePaymentInformationManagementV1SavePaymentInformationAndPlaceOrderPost POST /V1/negotiable-carts/{cartId}/payment-information
NegotiableQuotePaymentInformationManagementV1Api negotiableQuotePaymentInformationManagementV1SavePaymentInformationPost POST /V1/negotiable-carts/{cartId}/set-payment-information
NegotiableQuoteShipmentEstimationV1Api negotiableQuoteShipmentEstimationV1EstimateByExtendedAddressPost POST /V1/negotiable-carts/{cartId}/estimate-shipping-methods
NegotiableQuoteShippingInformationManagementV1Api negotiableQuoteShippingInformationManagementV1SaveAddressInformationPost POST /V1/negotiable-carts/{cartId}/shipping-information
NegotiableQuoteShippingMethodManagementV1Api negotiableQuoteShippingMethodManagementV1EstimateByAddressIdPost POST /V1/negotiable-carts/{cartId}/estimate-shipping-methods-by-address-id
QuoteBillingAddressManagementV1Api quoteBillingAddressManagementV1AssignPost POST /V1/carts/{cartId}/billing-address
QuoteBillingAddressManagementV1Api quoteBillingAddressManagementV1AssignPost_0 POST /V1/carts/mine/billing-address
QuoteBillingAddressManagementV1Api quoteBillingAddressManagementV1GetGet GET /V1/carts/{cartId}/billing-address
QuoteBillingAddressManagementV1Api quoteBillingAddressManagementV1GetGet_0 GET /V1/carts/mine/billing-address
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1DeleteByIdDelete DELETE /V1/carts/{cartId}/items/{itemId}
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1DeleteByIdDelete_0 DELETE /V1/carts/mine/items/{itemId}
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1GetListGet GET /V1/carts/{cartId}/items
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1GetListGet_0 GET /V1/carts/mine/items
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1SavePost POST /V1/carts/{quoteId}/items
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1SavePost_0 POST /V1/carts/mine/items
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1SavePut PUT /V1/carts/{cartId}/items/{itemId}
QuoteCartItemRepositoryV1Api quoteCartItemRepositoryV1SavePut_0 PUT /V1/carts/mine/items/{itemId}
QuoteCartManagementV1Api quoteCartManagementV1AssignCustomerPut PUT /V1/carts/{cartId}
QuoteCartManagementV1Api quoteCartManagementV1CreateEmptyCartForCustomerPost POST /V1/carts/mine
QuoteCartManagementV1Api quoteCartManagementV1CreateEmptyCartForCustomerPost_0 POST /V1/customers/{customerId}/carts
QuoteCartManagementV1Api quoteCartManagementV1CreateEmptyCartPost POST /V1/carts/
QuoteCartManagementV1Api quoteCartManagementV1GetCartForCustomerGet GET /V1/carts/mine
QuoteCartManagementV1Api quoteCartManagementV1PlaceOrderPut PUT /V1/carts/mine/order
QuoteCartManagementV1Api quoteCartManagementV1PlaceOrderPut_0 PUT /V1/carts/{cartId}/order
QuoteCartRepositoryV1Api quoteCartRepositoryV1GetGet GET /V1/carts/{cartId}
QuoteCartRepositoryV1Api quoteCartRepositoryV1GetListGet GET /V1/carts/search
QuoteCartRepositoryV1Api quoteCartRepositoryV1SavePut PUT /V1/carts/mine
QuoteCartTotalManagementV1Api quoteCartTotalManagementV1CollectTotalsPut PUT /V1/carts/mine/collect-totals
QuoteCartTotalRepositoryV1Api quoteCartTotalRepositoryV1GetGet GET /V1/carts/{cartId}/totals
QuoteCartTotalRepositoryV1Api quoteCartTotalRepositoryV1GetGet_0 GET /V1/carts/mine/totals
QuoteCouponManagementV1Api quoteCouponManagementV1GetGet GET /V1/carts/{cartId}/coupons
QuoteCouponManagementV1Api quoteCouponManagementV1GetGet_0 GET /V1/carts/mine/coupons
QuoteCouponManagementV1Api quoteCouponManagementV1RemoveDelete DELETE /V1/carts/{cartId}/coupons
QuoteCouponManagementV1Api quoteCouponManagementV1RemoveDelete_0 DELETE /V1/carts/mine/coupons
QuoteCouponManagementV1Api quoteCouponManagementV1SetPut PUT /V1/carts/{cartId}/coupons/{couponCode}
QuoteCouponManagementV1Api quoteCouponManagementV1SetPut_0 PUT /V1/carts/mine/coupons/{couponCode}
QuoteGuestBillingAddressManagementV1Api quoteGuestBillingAddressManagementV1AssignPost POST /V1/guest-carts/{cartId}/billing-address
QuoteGuestBillingAddressManagementV1Api quoteGuestBillingAddressManagementV1GetGet GET /V1/guest-carts/{cartId}/billing-address
QuoteGuestCartItemRepositoryV1Api quoteGuestCartItemRepositoryV1DeleteByIdDelete DELETE /V1/guest-carts/{cartId}/items/{itemId}
QuoteGuestCartItemRepositoryV1Api quoteGuestCartItemRepositoryV1GetListGet GET /V1/guest-carts/{cartId}/items
QuoteGuestCartItemRepositoryV1Api quoteGuestCartItemRepositoryV1SavePost POST /V1/guest-carts/{cartId}/items
QuoteGuestCartItemRepositoryV1Api quoteGuestCartItemRepositoryV1SavePut PUT /V1/guest-carts/{cartId}/items/{itemId}
QuoteGuestCartManagementV1Api quoteGuestCartManagementV1AssignCustomerPut PUT /V1/guest-carts/{cartId}
QuoteGuestCartManagementV1Api quoteGuestCartManagementV1CreateEmptyCartPost POST /V1/guest-carts
QuoteGuestCartManagementV1Api quoteGuestCartManagementV1PlaceOrderPut PUT /V1/guest-carts/{cartId}/order
QuoteGuestCartRepositoryV1Api quoteGuestCartRepositoryV1GetGet GET /V1/guest-carts/{cartId}
QuoteGuestCartTotalManagementV1Api quoteGuestCartTotalManagementV1CollectTotalsPut PUT /V1/guest-carts/{cartId}/collect-totals
QuoteGuestCartTotalRepositoryV1Api quoteGuestCartTotalRepositoryV1GetGet GET /V1/guest-carts/{cartId}/totals
QuoteGuestCouponManagementV1Api quoteGuestCouponManagementV1GetGet GET /V1/guest-carts/{cartId}/coupons
QuoteGuestCouponManagementV1Api quoteGuestCouponManagementV1RemoveDelete DELETE /V1/guest-carts/{cartId}/coupons
QuoteGuestCouponManagementV1Api quoteGuestCouponManagementV1SetPut PUT /V1/guest-carts/{cartId}/coupons/{couponCode}
QuoteGuestPaymentMethodManagementV1Api quoteGuestPaymentMethodManagementV1GetGet GET /V1/guest-carts/{cartId}/selected-payment-method
QuoteGuestPaymentMethodManagementV1Api quoteGuestPaymentMethodManagementV1GetListGet GET /V1/guest-carts/{cartId}/payment-methods
QuoteGuestPaymentMethodManagementV1Api quoteGuestPaymentMethodManagementV1SetPut PUT /V1/guest-carts/{cartId}/selected-payment-method
QuoteGuestShipmentEstimationV1Api quoteGuestShipmentEstimationV1EstimateByExtendedAddressPost POST /V1/guest-carts/{cartId}/estimate-shipping-methods
QuoteGuestShippingMethodManagementV1Api quoteGuestShippingMethodManagementV1GetListGet GET /V1/guest-carts/{cartId}/shipping-methods
QuotePaymentMethodManagementV1Api quotePaymentMethodManagementV1GetGet GET /V1/carts/{cartId}/selected-payment-method
QuotePaymentMethodManagementV1Api quotePaymentMethodManagementV1GetGet_0 GET /V1/carts/mine/selected-payment-method
QuotePaymentMethodManagementV1Api quotePaymentMethodManagementV1GetListGet GET /V1/carts/{cartId}/payment-methods
QuotePaymentMethodManagementV1Api quotePaymentMethodManagementV1GetListGet_0 GET /V1/carts/mine/payment-methods
QuotePaymentMethodManagementV1Api quotePaymentMethodManagementV1SetPut PUT /V1/carts/{cartId}/selected-payment-method
QuotePaymentMethodManagementV1Api quotePaymentMethodManagementV1SetPut_0 PUT /V1/carts/mine/selected-payment-method
QuoteShipmentEstimationV1Api quoteShipmentEstimationV1EstimateByExtendedAddressPost POST /V1/carts/{cartId}/estimate-shipping-methods
QuoteShipmentEstimationV1Api quoteShipmentEstimationV1EstimateByExtendedAddressPost_0 POST /V1/carts/mine/estimate-shipping-methods
QuoteShippingMethodManagementV1Api quoteShippingMethodManagementV1EstimateByAddressIdPost POST /V1/carts/{cartId}/estimate-shipping-methods-by-address-id
QuoteShippingMethodManagementV1Api quoteShippingMethodManagementV1EstimateByAddressIdPost_0 POST /V1/carts/mine/estimate-shipping-methods-by-address-id
QuoteShippingMethodManagementV1Api quoteShippingMethodManagementV1GetListGet GET /V1/carts/{cartId}/shipping-methods
QuoteShippingMethodManagementV1Api quoteShippingMethodManagementV1GetListGet_0 GET /V1/carts/mine/shipping-methods
RequisitionListRequisitionListRepositoryV1Api requisitionListRequisitionListRepositoryV1SavePost POST /V1/requisition_lists
RewardRewardManagementV1Api rewardRewardManagementV1SetPost POST /V1/reward/mine/use-reward
RmaCommentManagementV1Api rmaCommentManagementV1AddCommentPost POST /V1/returns/{id}/comments
RmaCommentManagementV1Api rmaCommentManagementV1CommentsListGet GET /V1/returns/{id}/comments
RmaRmaAttributesManagementV1Api rmaRmaAttributesManagementV1GetAllAttributesMetadataGet GET /V1/returnsAttributeMetadata
RmaRmaAttributesManagementV1Api rmaRmaAttributesManagementV1GetAttributeMetadataGet GET /V1/returnsAttributeMetadata/{attributeCode}
RmaRmaAttributesManagementV1Api rmaRmaAttributesManagementV1GetAttributesGet GET /V1/returnsAttributeMetadata/form/{formCode}
RmaRmaAttributesManagementV1Api rmaRmaAttributesManagementV1GetCustomAttributesMetadataGet GET /V1/returnsAttributeMetadata/custom
RmaRmaManagementV1Api rmaRmaManagementV1SaveRmaPost POST /V1/returns
RmaRmaManagementV1Api rmaRmaManagementV1SaveRmaPut PUT /V1/returns/{id}
RmaRmaManagementV1Api rmaRmaManagementV1SearchGet GET /V1/returns
RmaRmaRepositoryV1Api rmaRmaRepositoryV1DeleteDelete DELETE /V1/returns/{id}
RmaRmaRepositoryV1Api rmaRmaRepositoryV1GetGet GET /V1/returns/{id}
RmaTrackManagementV1Api rmaTrackManagementV1AddTrackPost POST /V1/returns/{id}/tracking-numbers
RmaTrackManagementV1Api rmaTrackManagementV1GetShippingLabelPdfGet GET /V1/returns/{id}/labels
RmaTrackManagementV1Api rmaTrackManagementV1GetTracksGet GET /V1/returns/{id}/tracking-numbers
RmaTrackManagementV1Api rmaTrackManagementV1RemoveTrackByIdDelete DELETE /V1/returns/{id}/tracking-numbers/{trackId}
SalesCreditmemoCommentRepositoryV1Api salesCreditmemoCommentRepositoryV1SavePost POST /V1/creditmemo/{id}/comments
SalesCreditmemoManagementV1Api salesCreditmemoManagementV1CancelPut PUT /V1/creditmemo/{id}
SalesCreditmemoManagementV1Api salesCreditmemoManagementV1GetCommentsListGet GET /V1/creditmemo/{id}/comments
SalesCreditmemoManagementV1Api salesCreditmemoManagementV1NotifyPost POST /V1/creditmemo/{id}/emails
SalesCreditmemoManagementV1Api salesCreditmemoManagementV1RefundPost POST /V1/creditmemo/refund
SalesCreditmemoRepositoryV1Api salesCreditmemoRepositoryV1GetGet GET /V1/creditmemo/{id}
SalesCreditmemoRepositoryV1Api salesCreditmemoRepositoryV1GetListGet GET /V1/creditmemos
SalesCreditmemoRepositoryV1Api salesCreditmemoRepositoryV1SavePost POST /V1/creditmemo
SalesInvoiceCommentRepositoryV1Api salesInvoiceCommentRepositoryV1SavePost POST /V1/invoices/comments
SalesInvoiceManagementV1Api salesInvoiceManagementV1GetCommentsListGet GET /V1/invoices/{id}/comments
SalesInvoiceManagementV1Api salesInvoiceManagementV1NotifyPost POST /V1/invoices/{id}/emails
SalesInvoiceManagementV1Api salesInvoiceManagementV1SetCapturePost POST /V1/invoices/{id}/capture
SalesInvoiceManagementV1Api salesInvoiceManagementV1SetVoidPost POST /V1/invoices/{id}/void
SalesInvoiceOrderV1Api salesInvoiceOrderV1ExecutePost POST /V1/order/{orderId}/invoice
SalesInvoiceRepositoryV1Api salesInvoiceRepositoryV1GetGet GET /V1/invoices/{id}
SalesInvoiceRepositoryV1Api salesInvoiceRepositoryV1GetListGet GET /V1/invoices
SalesInvoiceRepositoryV1Api salesInvoiceRepositoryV1SavePost POST /V1/invoices/
SalesOrderAddressRepositoryV1Api salesOrderAddressRepositoryV1SavePut PUT /V1/orders/{parent_id}
SalesOrderItemRepositoryV1Api salesOrderItemRepositoryV1GetGet GET /V1/orders/items/{id}
SalesOrderItemRepositoryV1Api salesOrderItemRepositoryV1GetListGet GET /V1/orders/items
SalesOrderManagementV1Api salesOrderManagementV1AddCommentPost POST /V1/orders/{id}/comments
SalesOrderManagementV1Api salesOrderManagementV1CancelPost POST /V1/orders/{id}/cancel
SalesOrderManagementV1Api salesOrderManagementV1GetCommentsListGet GET /V1/orders/{id}/comments
SalesOrderManagementV1Api salesOrderManagementV1GetStatusGet GET /V1/orders/{id}/statuses
SalesOrderManagementV1Api salesOrderManagementV1HoldPost POST /V1/orders/{id}/hold
SalesOrderManagementV1Api salesOrderManagementV1NotifyPost POST /V1/orders/{id}/emails
SalesOrderManagementV1Api salesOrderManagementV1UnHoldPost POST /V1/orders/{id}/unhold
SalesOrderRepositoryV1Api salesOrderRepositoryV1GetGet GET /V1/orders/{id}
SalesOrderRepositoryV1Api salesOrderRepositoryV1GetListGet GET /V1/orders
SalesOrderRepositoryV1Api salesOrderRepositoryV1SavePost POST /V1/orders/
SalesOrderRepositoryV1Api salesOrderRepositoryV1SavePut PUT /V1/orders/create
SalesRefundInvoiceV1Api salesRefundInvoiceV1ExecutePost POST /V1/invoice/{invoiceId}/refund
SalesRefundOrderV1Api salesRefundOrderV1ExecutePost POST /V1/order/{orderId}/refund
SalesRuleCouponManagementV1Api salesRuleCouponManagementV1DeleteByCodesPost POST /V1/coupons/deleteByCodes
SalesRuleCouponManagementV1Api salesRuleCouponManagementV1DeleteByIdsPost POST /V1/coupons/deleteByIds
SalesRuleCouponManagementV1Api salesRuleCouponManagementV1GeneratePost POST /V1/coupons/generate
SalesRuleCouponRepositoryV1Api salesRuleCouponRepositoryV1DeleteByIdDelete DELETE /V1/coupons/{couponId}
SalesRuleCouponRepositoryV1Api salesRuleCouponRepositoryV1GetByIdGet GET /V1/coupons/{couponId}
SalesRuleCouponRepositoryV1Api salesRuleCouponRepositoryV1GetListGet GET /V1/coupons/search
SalesRuleCouponRepositoryV1Api salesRuleCouponRepositoryV1SavePost POST /V1/coupons
SalesRuleCouponRepositoryV1Api salesRuleCouponRepositoryV1SavePut PUT /V1/coupons/{couponId}
SalesRuleRuleRepositoryV1Api salesRuleRuleRepositoryV1DeleteByIdDelete DELETE /V1/salesRules/{ruleId}
SalesRuleRuleRepositoryV1Api salesRuleRuleRepositoryV1GetByIdGet GET /V1/salesRules/{ruleId}
SalesRuleRuleRepositoryV1Api salesRuleRuleRepositoryV1GetListGet GET /V1/salesRules/search
SalesRuleRuleRepositoryV1Api salesRuleRuleRepositoryV1SavePost POST /V1/salesRules
SalesRuleRuleRepositoryV1Api salesRuleRuleRepositoryV1SavePut PUT /V1/salesRules/{ruleId}
SalesShipOrderV1Api salesShipOrderV1ExecutePost POST /V1/order/{orderId}/ship
SalesShipmentCommentRepositoryV1Api salesShipmentCommentRepositoryV1SavePost POST /V1/shipment/{id}/comments
SalesShipmentManagementV1Api salesShipmentManagementV1GetCommentsListGet GET /V1/shipment/{id}/comments
SalesShipmentManagementV1Api salesShipmentManagementV1GetLabelGet GET /V1/shipment/{id}/label
SalesShipmentManagementV1Api salesShipmentManagementV1NotifyPost POST /V1/shipment/{id}/emails
SalesShipmentRepositoryV1Api salesShipmentRepositoryV1GetGet GET /V1/shipment/{id}
SalesShipmentRepositoryV1Api salesShipmentRepositoryV1GetListGet GET /V1/shipments
SalesShipmentRepositoryV1Api salesShipmentRepositoryV1SavePost POST /V1/shipment/
SalesShipmentTrackRepositoryV1Api salesShipmentTrackRepositoryV1DeleteByIdDelete DELETE /V1/shipment/track/{id}
SalesShipmentTrackRepositoryV1Api salesShipmentTrackRepositoryV1SavePost POST /V1/shipment/track
SalesTransactionRepositoryV1Api salesTransactionRepositoryV1GetGet GET /V1/transactions/{id}
SalesTransactionRepositoryV1Api salesTransactionRepositoryV1GetListGet GET /V1/transactions
SearchV1Api searchV1SearchGet GET /V1/search
SharedCatalogCategoryManagementV1Api sharedCatalogCategoryManagementV1AssignCategoriesPost POST /V1/sharedCatalog/{id}/assignCategories
SharedCatalogCategoryManagementV1Api sharedCatalogCategoryManagementV1GetCategoriesGet GET /V1/sharedCatalog/{id}/categories
SharedCatalogCategoryManagementV1Api sharedCatalogCategoryManagementV1UnassignCategoriesPost POST /V1/sharedCatalog/{id}/unassignCategories
SharedCatalogCompanyManagementV1Api sharedCatalogCompanyManagementV1AssignCompaniesPost POST /V1/sharedCatalog/{sharedCatalogId}/assignCompanies
SharedCatalogCompanyManagementV1Api sharedCatalogCompanyManagementV1GetCompaniesGet GET /V1/sharedCatalog/{sharedCatalogId}/companies
SharedCatalogCompanyManagementV1Api sharedCatalogCompanyManagementV1UnassignCompaniesPost POST /V1/sharedCatalog/{sharedCatalogId}/unassignCompanies
SharedCatalogProductManagementV1Api sharedCatalogProductManagementV1AssignProductsPost POST /V1/sharedCatalog/{id}/assignProducts
SharedCatalogProductManagementV1Api sharedCatalogProductManagementV1GetProductsGet GET /V1/sharedCatalog/{id}/products
SharedCatalogProductManagementV1Api sharedCatalogProductManagementV1UnassignProductsPost POST /V1/sharedCatalog/{id}/unassignProducts
SharedCatalogSharedCatalogRepositoryV1Api sharedCatalogSharedCatalogRepositoryV1DeleteByIdDelete DELETE /V1/sharedCatalog/{sharedCatalogId}
SharedCatalogSharedCatalogRepositoryV1Api sharedCatalogSharedCatalogRepositoryV1GetGet GET /V1/sharedCatalog/{sharedCatalogId}
SharedCatalogSharedCatalogRepositoryV1Api sharedCatalogSharedCatalogRepositoryV1GetListGet GET /V1/sharedCatalog/
SharedCatalogSharedCatalogRepositoryV1Api sharedCatalogSharedCatalogRepositoryV1SavePost POST /V1/sharedCatalog
SharedCatalogSharedCatalogRepositoryV1Api sharedCatalogSharedCatalogRepositoryV1SavePut PUT /V1/sharedCatalog/{id}
StoreGroupRepositoryV1Api storeGroupRepositoryV1GetListGet GET /V1/store/storeGroups
StoreStoreConfigManagerV1Api storeStoreConfigManagerV1GetStoreConfigsGet GET /V1/store/storeConfigs
StoreStoreRepositoryV1Api storeStoreRepositoryV1GetListGet GET /V1/store/storeViews
StoreWebsiteRepositoryV1Api storeWebsiteRepositoryV1GetListGet GET /V1/store/websites
TaxTaxClassRepositoryV1Api taxTaxClassRepositoryV1DeleteByIdDelete DELETE /V1/taxClasses/{taxClassId}
TaxTaxClassRepositoryV1Api taxTaxClassRepositoryV1GetGet GET /V1/taxClasses/{taxClassId}
TaxTaxClassRepositoryV1Api taxTaxClassRepositoryV1GetListGet GET /V1/taxClasses/search
TaxTaxClassRepositoryV1Api taxTaxClassRepositoryV1SavePost POST /V1/taxClasses
TaxTaxClassRepositoryV1Api taxTaxClassRepositoryV1SavePut PUT /V1/taxClasses/{classId}
TaxTaxRateRepositoryV1Api taxTaxRateRepositoryV1DeleteByIdDelete DELETE /V1/taxRates/{rateId}
TaxTaxRateRepositoryV1Api taxTaxRateRepositoryV1GetGet GET /V1/taxRates/{rateId}
TaxTaxRateRepositoryV1Api taxTaxRateRepositoryV1GetListGet GET /V1/taxRates/search
TaxTaxRateRepositoryV1Api taxTaxRateRepositoryV1SavePost POST /V1/taxRates
TaxTaxRateRepositoryV1Api taxTaxRateRepositoryV1SavePut PUT /V1/taxRates
TaxTaxRuleRepositoryV1Api taxTaxRuleRepositoryV1DeleteByIdDelete DELETE /V1/taxRules/{ruleId}
TaxTaxRuleRepositoryV1Api taxTaxRuleRepositoryV1GetGet GET /V1/taxRules/{ruleId}
TaxTaxRuleRepositoryV1Api taxTaxRuleRepositoryV1GetListGet GET /V1/taxRules/search
TaxTaxRuleRepositoryV1Api taxTaxRuleRepositoryV1SavePost POST /V1/taxRules
TaxTaxRuleRepositoryV1Api taxTaxRuleRepositoryV1SavePut PUT /V1/taxRules
WorldpayGuestPaymentInformationManagementProxyV1Api worldpayGuestPaymentInformationManagementProxyV1SavePaymentInformationAndPlaceOrderPost POST /V1/worldpay-guest-carts/{cartId}/payment-information

Documentation For Models

Documentation For Authorization

OAuth2

  • Type: OAuth
  • Flow: password
  • Authorization URL:
  • Scopes: N/A

Author

Build

To build this library, run make codegen.

This requires that the following:

  • swagger-codegen binary at version 2.3.1 is installed globally on your system.
  • jq version 1.5 is installed globally.