opero-crm/allegro-api

https://developer.allegro.pl/about Documentation is generated from [this OpenAPI 3.0 specification file](https://developer.allegro.pl/swagger.yaml). To start working with our API, you can also check our [official Allegro REST API public collection](https://www.postman.com/allegro-rest-api/allegro-r

Maintainers

Package info

bitbucket.org/westdooorclean/allegro-api/

Homepage

pkg:composer/opero-crm/allegro-api

Statistics

Installs: 19

Dependents: 0

Suggesters: 0

1.0.22 2026-02-13 12:46 UTC

This package is auto-updated.

Last update: 2026-03-13 12:58:00 UTC


README

https://developer.allegro.pl/about

Documentation is generated from this OpenAPI 3.0 specification file. To start working with our API, you can also check our official Allegro REST API public collection in Postman.

For more information, please visit https://github.com/allegro/allegro-api/issues.

Build

To generate library run make generate. To generate and release new package version run make publish.

Installation & Usage

Requirements

PHP 8.1 and later.

Composer

Run composer require opero-crm/allegro-api

Laravel Integration

When using in a Laravel application, the package auto-registers the service provider and AllegroApi facade. Set token and host before making API calls:

use AllegroApi;

// Set credentials on the default instance (fluent)
AllegroApi::setToken($token)->setHost('https://api.allegro.pl');
$offers = AllegroApi::offerManagement()->getPublicationReportUsingGET($commandId);

// Multiple instances - create separate API clients per account
$seller1 = AllegroApi::create($token1, 'https://api.allegro.pl');
$seller2 = AllegroApi::create($token2, 'https://api.allegro.pl.allegrosandbox.pl');
$orders1 = $seller1->orderManagement()->getListOfOrdersUsingGET();
$orders2 = $seller2->orderManagement()->getListOfOrdersUsingGET();

Or via dependency injection:

use OperoCRM\AllegroApi\Laravel\AllegroApi;

public function __construct(AllegroApi $allegroApi)
{
    $this->allegroApi = $allegroApi;
}

// Configure and use
$this->allegroApi->setToken($token)->setHost($host)->offerManagement()->...

API Endpoints

All URIs are relative to https://api.allegro.pl

ClassMethodHTTP requestDescription
AdditionalServicesApicreateAdditionalServicesGroupUsingPOSTPOST /sale/offer-additional-services/groupsCreate additional services group
AdditionalServicesApigetAdditionalServicesGroupUsingGETGET /sale/offer-additional-services/groups/{groupId}Get the details of an additional services group
AdditionalServicesApigetListOfAdditionalServicesDefinitionsCategoriesUsingGETGET /sale/offer-additional-services/categoriesGet the additional services definitions by categories
AdditionalServicesApigetListOfAdditionalServicesGroupsUsingGETGET /sale/offer-additional-services/groupsGet the user's additional services groups
AdditionalServicesApimodifyAdditionalServicesGroupUsingPUTPUT /sale/offer-additional-services/groups/{groupId}Modify an additional services group
AdditionalServicesTranslationsApideleteAdditionalServiceGroupTranslationDELETE /sale/offer-additional-services/groups/{groupId}/translations/{language}Delete a translation for a specified group and language
AdditionalServicesTranslationsApigetAdditionalServiceGroupTranslationsGET /sale/offer-additional-services/groups/{groupId}/translationsGet translations for specified group
AdditionalServicesTranslationsApiupdateAdditionalServiceGroupTranslationPATCH /sale/offer-additional-services/groups/{groupId}/translations/{language}Create/Update translations for specified group and language
AdvanceShipNoticesApicancelAdvanceShipNoticePUT /fulfillment/advance-ship-notices/{id}/cancelCancel Advance Ship Notice
AdvanceShipNoticesApicreateAdvanceShipNoticePOST /fulfillment/advance-ship-noticesCreate an Advance Ship Notice
AdvanceShipNoticesApideleteAdvanceShipNoticeDELETE /fulfillment/advance-ship-notices/{id}Delete Advance Ship Notice
AdvanceShipNoticesApigetAdvanceShipNoticeGET /fulfillment/advance-ship-notices/{id}Get single Advance Ship Notice
AdvanceShipNoticesApigetAdvanceShipNoticeLabelsGET /fulfillment/advance-ship-notices/{id}/labelsGet labels for Advance Ship Notice
AdvanceShipNoticesApigetAdvanceShipNoticeReceivingStateGET /fulfillment/advance-ship-notices/{id}/receiving-stateCheck current state and details of Advance Ship Notice receiving
AdvanceShipNoticesApigetAdvanceShipNoticesGET /fulfillment/advance-ship-noticesGet list of Advance Ship Notices
AdvanceShipNoticesApigetSubmitCommandGET /fulfillment/submit-commands/{command-id}Get submit status
AdvanceShipNoticesApisubmitCommandPUT /fulfillment/submit-commands/{command-id}Submit the Advance Ship Notice
AdvanceShipNoticesApiupdateAdvanceShipNoticePUT /fulfillment/advance-ship-notices/{id}Update Advance Ship Notice
AdvanceShipNoticesApiupdateSubmittedAdvanceShipNoticePUT /fulfillment/advance-ship-notices/{id}/submittedUpdate submitted Advance Ship Notice
AfterSaleServicesApicreateAfterSalesServiceConditionsAttachmentUsingPOSTPOST /after-sales-service-conditions/attachmentsCreate a warranty attachment metadata
AfterSaleServicesApicreateAfterSalesServiceImpliedWarrantyUsingPOSTPOST /after-sales-service-conditions/implied-warrantiesCreate new user's implied warranty
AfterSaleServicesApicreateAfterSalesServiceReturnPolicyUsingPOSTPOST /after-sales-service-conditions/return-policiesCreate new user's return policy
AfterSaleServicesApicreateAfterSalesServiceWarrantyUsingPOSTPOST /after-sales-service-conditions/warrantiesCreate new user's warranty
AfterSaleServicesApideleteAfterSalesServiceReturnPolicyUsingDELETEDELETE /after-sales-service-conditions/return-policies/{returnPolicyId}Delete the user's return policy
AfterSaleServicesApigetAfterSalesServiceImpliedWarrantyUsingGETGET /after-sales-service-conditions/implied-warranties/{impliedWarrantyId}Get the user's implied warranty
AfterSaleServicesApigetAfterSalesServiceReturnPolicyUsingGETGET /after-sales-service-conditions/return-policies/{returnPolicyId}Get the user's return policy
AfterSaleServicesApigetAfterSalesServiceWarrantyUsingGETGET /after-sales-service-conditions/warranties/{warrantyId}Get the user's warranty
AfterSaleServicesApigetPublicSellerListingUsingGETGET /after-sales-service-conditions/implied-warrantiesGet the user's implied warranties
AfterSaleServicesApigetPublicSellerListingUsingGET1GET /after-sales-service-conditions/return-policiesGet the user's return policies
AfterSaleServicesApigetPublicSellerListingUsingGET2GET /after-sales-service-conditions/warrantiesGet the user's warranties
AfterSaleServicesApiupdateAfterSalesServiceImpliedWarrantyUsingPUTPUT /after-sales-service-conditions/implied-warranties/{impliedWarrantyId}Change the user's implied warranty
AfterSaleServicesApiupdateAfterSalesServiceReturnPolicyUsingPUTPUT /after-sales-service-conditions/return-policies/{returnPolicyId}Change the user's return policy
AfterSaleServicesApiupdateAfterSalesServiceWarrantyUsingPUTPUT /after-sales-service-conditions/warranties/{warrantyId}Change the user's warranty
AfterSaleServicesApiuploadAfterSalesServiceConditionsAttachmentUsingPUTPUT /after-sales-service-conditions/attachments/{attachmentId}Upload an warranty attachment
AlleDiscountApigetAlleDiscountCampaignsGET /sale/alle-discount/campaignsList AlleDiscount campaigns
AlleDiscountApigetOffersEligibleForAlleDiscountGET /sale/alle-discount/{campaignId}/eligible-offersList eligible offers
AlleDiscountApigetOffersSubmittedToAlleDiscountGET /sale/alle-discount/{campaignId}/submitted-offersList offer participations
AlleDiscountApigetSubmitOfferToAlleDiscountCommandsStatusGET /sale/alle-discount/submit-offer-commands/{commandId}Get the offer submission command status
AlleDiscountApigetWithdrawOfferFromAlleDiscountCommandsStatusGET /sale/alle-discount/withdraw-offer-commands/{commandId}Get the offer withdrawal command status
AlleDiscountApisubmitOfferToAlleDiscountCommandsPOST /sale/alle-discount/submit-offer-commandsCreate submit offer command
AlleDiscountApiwithdrawOfferFromAlleDiscountCommandsPOST /sale/alle-discount/withdraw-offer-commandsCreate withdraw offer command
AllegroPricesApigetAllegroPricesConsentForOfferGET /sale/allegro-prices-offer-consents/{offerId}Get the current consents' state for an offer
AllegroPricesApigetAllegroPricesEligibilityForAccountGET /sale/allegro-prices-account-eligibilityGet the current eligibility information for the account
AllegroPricesApiupdateAllegroPricesConsentForAccountPUT /sale/allegro-prices-account-consentUpdate consents for the account
AllegroPricesApiupdateAllegroPricesConsentForOfferPUT /sale/allegro-prices-offer-consents/{offerId}Update consents for an offer
AuctionsAndBiddingApigetBidGET /bidding/offers/{offerId}/bidGet current user's bid information
AuctionsAndBiddingApiplaceBidPUT /bidding/offers/{offerId}/bidPlace a bid in an auction
AutomaticPricingApicreateAutomaticPricingRulesUsingPostPOST /sale/price-automation/rulesPost automatic pricing rule
AutomaticPricingApideleteAutomaticPricingRuleUsingDeleteDELETE /sale/price-automation/rules/{ruleId}Delete automatic pricing rule
AutomaticPricingApigetAutomaticPricingRuleByIdUsingGETGET /sale/price-automation/rules/{ruleId}Get automatic pricing rule by id
AutomaticPricingApigetAutomaticPricingRulesForOfferUsingGETGET /sale/price-automation/offers/{offerId}/rulesGet automatic pricing rules assigned to the offer
AutomaticPricingApigetAutomaticPricingRulesUsingGETGET /sale/price-automation/rulesGet automatic pricing rules
AutomaticPricingApiupdateAutomaticPricingRuleUsingPutPUT /sale/price-automation/rules/{ruleId}Edit automatic pricing rule
BadgeCampaignsApibadgeApplicationsGetAllGET /sale/badge-applicationsGet a list of badge applications
BadgeCampaignsApibadgeApplicationsGetOneGET /sale/badge-applications/{applicationId}Get a badge application details
BadgeCampaignsApibadgeCampaignsGetAllGET /sale/badge-campaignsGet a list of available badge campaigns
BadgeCampaignsApibadgeOperationsGetOneGET /sale/badge-operations/{operationId}Get badge operation details
BadgeCampaignsApigetBadgesGET /sale/badgesGet a list of badges
BadgeCampaignsApipatchBadgePATCH /sale/badges/offers/{offerId}/campaigns/{campaignId}Update campaign badge for the given offer
BadgeCampaignsApipostBadgesPOST /sale/badgesApply for badge in selected offer
BatchOfferModificationApigetGeneralReportUsingGETGET /sale/offer-modification-commands/{commandId}Modification command summary
BatchOfferModificationApigetPriceModificationCommandStatusUsingGETGET /sale/offer-price-change-commands/{commandId}Change price command summary
BatchOfferModificationApigetPriceModificationCommandTasksStatusesUsingGETGET /sale/offer-price-change-commands/{commandId}/tasksChange price command detailed report
BatchOfferModificationApigetQuantityModificationCommandStatusUsingGETGET /sale/offer-quantity-change-commands/{commandId}Change quantity command summary
BatchOfferModificationApigetQuantityModificationCommandTasksStatusesUsingGETGET /sale/offer-quantity-change-commands/{commandId}/tasksChange quantity command detailed report
BatchOfferModificationApigetTasksUsingGETGET /sale/offer-modification-commands/{commandId}/tasksModification command detailed report
BatchOfferModificationApigetofferAutomaticPricingModificationCommandStatusUsingGETGET /sale/offer-price-automation-commands/{commandId}Automatic pricing command summary
BatchOfferModificationApigetofferAutomaticPricingModificationCommandTasksStatusesUsingGETGET /sale/offer-price-automation-commands/{commandId}/tasksAutomatic pricing command detailed report
BatchOfferModificationApimodificationCommandUsingPUTPUT /sale/offer-modification-commands/{commandId}Batch offer modification
BatchOfferModificationApiofferAutomaticPricingModificationCommandUsingPOSTPOST /sale/offer-price-automation-commandsBatch offer automatic pricing rules modification
BatchOfferModificationApipriceModificationCommandUsingPUTPUT /sale/offer-price-change-commands/{commandId}Batch offer price modification
BatchOfferModificationApiquantityModificationCommandUsingPUTPUT /sale/offer-quantity-change-commands/{commandId}Batch offer quantity modification
BillingApigetBillingEntriesGET /billing/billing-entriesGet a list of billing entries
BillingApigetBillingTypesGET /billing/billing-typesGet a list of billing types
CategoriesAndParametersApicategorySuggestionUsingGETGET /sale/matching-categoriesGet categories suggestions
CategoriesAndParametersApigetCategoriesUsingGETGET /sale/categoriesGet IDs of Allegro categories
CategoriesAndParametersApigetCategoryEventsUsingGET1GET /sale/category-eventsGet changes in categories
CategoriesAndParametersApigetCategoryParametersScheduledChangesUsingGET1GET /sale/category-parameters-scheduled-changesGet planned changes in category parameters
CategoriesAndParametersApigetCategoryUsingGET1GET /sale/categories/{categoryId}Get a category by ID
CategoriesAndParametersApigetFlatParametersUsingGET2GET /sale/categories/{categoryId}/parametersGet parameters supported by a category
CharityApisearchFundraisingCampaignsGET /charity/fundraising-campaignsSearch fundraising campaigns
ClassifiedsApiassignClassifiedPackagesUsingPUTPUT /sale/offer-classifieds-packages/{offerId}Assign packages to a classified
ClassifiedsApiclassifiedOffersStatsGETGET /sale/classified-offers-statsGet the advertisements daily statistics
ClassifiedsApiclassifiedSellerOfferStatsGETGET /sale/classified-seller-statsGet the seller's advertisements daily statistics
ClassifiedsApigetClassifiedPackageConfigurationUsingGETGET /sale/classifieds-packages/{packageId}Get the configuration of a package
ClassifiedsApigetClassifiedPackageConfigurationsForCategoryUsingGETGET /sale/classifieds-packagesGet configurations of packages
ClassifiedsApigetClassifiedPackagesUsingGETGET /sale/offer-classifieds-packages/{offerId}Get classified packages assigned to an offer
CommissionRefundsApicancelRefundApplicationDELETE /order/refund-claims/{claimId}Cancel a refund application
CommissionRefundsApicreateRefundApplicationPOST /order/refund-claimsCreate a refund application
CommissionRefundsApigetRefundApplicationGET /order/refund-claims/{claimId}Get a refund application details
CommissionRefundsApigetRefundApplicationsGET /order/refund-claimsGet a list of refund applications
CompatibilityListApigetCategoriesThatSupportCompatibilityListGET /sale/compatibility-list/supported-categoriesGet list of categories where compatibility list is supported
CompatibilityListApigetCompatibilityListSuggestionGET /sale/compatibility-list-suggestionsGet suggested compatibility list.
CompatibilityListApigetCompatibleProductsGET /sale/compatible-productsGet list of compatible products
CompatibilityListApigetCompatibleProductsGroupsGET /sale/compatible-products/groupsGet list of compatible product groups
ContactsApicreateContactUsingPOSTPOST /sale/offer-contactsCreate a new contact
ContactsApigetContactUsingGETGET /sale/offer-contacts/{id}Get contact details
ContactsApigetListOfContactsUsingGETGET /sale/offer-contactsGet the user's contacts
ContactsApimodifyContactUsingPUTPUT /sale/offer-contacts/{id}Modify contact details
ConversionsApigetCpsConversionsGET /affiliate/conversions/cps[BETA] List CPS conversions
CustomerReturnsApigetCustomerReturnByIdGET /order/customer-returns/{customerReturnId}[BETA] Get customer return by id
CustomerReturnsApigetCustomerReturnsGET /order/customer-returns[BETA] Get customer returns by provided query parameters
CustomerReturnsApirejectCustomerReturnRefundPOST /order/customer-returns/{customerReturnId}/rejection[BETA] Reject customer return refund
DeliveryApicreateShippingRatesSetUsingPOSTPOST /sale/shipping-ratesCreate a new shipping rates set
DeliveryApigetListOfDeliveryMethodsUsingGETGET /sale/delivery-methodsGet the list of delivery methods
DeliveryApigetListOfShippingRatestUsingGETGET /sale/shipping-ratesGet the user's shipping rates
DeliveryApigetSaleDeliverySettingsGET /sale/delivery-settingsGet the user's delivery settings
DeliveryApigetShippingRatesSetUsingGETGET /sale/shipping-rates/{id}Get the details of a shipping rates set
DeliveryApimodifyShippingRatesSetUsingPUTPUT /sale/shipping-rates/{id}Edit a user's shipping rates set
DeliveryApiputSaleDeliverySettingsPUT /sale/delivery-settingsModify the user's delivery settings
DepositsApigetDepositTypesGET /deposit/typesGet deposit types
FulfillmentParcelsApigetFulfillmentOrderParcelsGET /fulfillment/orders/{orderId}/parcelsGet list of shipped parcels
FulfillmentProductsApigetAvailableProductsGET /fulfillment/available-productsGet list of available products
FulfillmentRemovalApicreateFulfillmentRemovalPreferencesPUT /fulfillment/removal/preferencesCreate new active Fulfillment Removal Preference
FulfillmentRemovalApigetFulfillmentRemovalPreferencesGET /fulfillment/removal/preferencesGet current active removal preference
FulfillmentStockApigetFulfillmentStockGET /fulfillment/stockGet available stock
ImagesAndAttachmentsApicreateOfferAttachmentUsingPOSTPOST /sale/offer-attachmentsCreate an offer attachment
ImagesAndAttachmentsApigetOfferAttachmentGET /sale/offer-attachments/{attachmentId}Get offer attachment details
ImagesAndAttachmentsApiuploadOfferAttachmentUsingPUTPUT /sale/offer-attachments/{attachmentId}Upload an offer attachment
ImagesAndAttachmentsApiuploadOfferImageUsingPOSTPOST /sale/imagesUpload an offer image
InformationAboutMarketplacesApimarketplacesGETGET /marketplacesGet details for all marketplaces in allegro
InformationAboutUserApiaddAdditionalEmailUsingPOSTPOST /account/additional-emailsAdd a new additional email address to user's account
InformationAboutUserApianswerUserRatingUsingPUTPUT /sale/user-ratings/{ratingId}/answerAnswer for user's rating
InformationAboutUserApideleteAdditionalEmailUsingDELETEDELETE /account/additional-emails/{emailId}Delete an additional email address
InformationAboutUserApigetAdditionalEmailUsingGETGET /account/additional-emails/{emailId}Get information about a particular additional email
InformationAboutUserApigetListOfAdditionalEmailsUsingGETGET /account/additional-emailsGet user's additional emails
InformationAboutUserApigetSaleQualityUsingGETGET /sale/qualityGet sales quality
InformationAboutUserApigetSellerSmartClassificationGETGET /sale/smartGet Smart! seller classification report
InformationAboutUserApigetUserRatingUsingGETGET /sale/user-ratings/{ratingId}Get the user's rating by given rating id
InformationAboutUserApigetUserRatingsUsingGETGET /sale/user-ratingsGet the user's ratings
InformationAboutUserApimeGETGET /meGet basic information about user
InformationAboutUserApiuserRatingRemovalUsingPUTPUT /sale/user-ratings/{ratingId}/removalRequest removal of user's rating
MessageCenterApichangeReadFlagOnThreadPUTPUT /messaging/threads/{threadId}/readMark a particular thread as read
MessageCenterApideleteMessageDELETEDELETE /messaging/messages/{messageId}Delete single message
MessageCenterApidownloadAttachmentGETGET /messaging/message-attachments/{attachmentId}Download attachment
MessageCenterApigetMessageGETGET /messaging/messages/{messageId}Get single message
MessageCenterApigetThreadGETGET /messaging/threads/{threadId}Get user thread
MessageCenterApilistMessagesGETGET /messaging/threads/{threadId}/messagesList messages in thread
MessageCenterApilistThreadsGETGET /messaging/threadsList user threads
MessageCenterApinewAttachmentDeclarationPOSTPOST /messaging/message-attachmentsAdd attachment declaration
MessageCenterApinewMessageInThreadPOSTPOST /messaging/threads/{threadId}/messagesWrite a new message in thread
MessageCenterApinewMessagePOSTPOST /messaging/messagesWrite a new message
MessageCenterApiuploadAttachmentPUTPUT /messaging/message-attachments/{attachmentId}Upload attachment binary data
OfferBundlesApicreateOfferBundleUsingPOSTPOST /sale/bundlesCreate a new offer bundle
OfferBundlesApideleteOfferBundleUsingGETDELETE /sale/bundles/{bundleId}Delete bundle by ID
OfferBundlesApigetOfferBundleUsingGETGET /sale/bundles/{bundleId}Get bundle by ID
OfferBundlesApilistSellersOfferBundlesUsingGETGET /sale/bundlesList seller's bundles
OfferBundlesApiupdateOfferBundleDiscountUsingPUTPUT /sale/bundles/{bundleId}/discountUpdate discount associated with bundle
OfferManagementApichangePublicationStatusUsingPUTPUT /sale/offer-publication-commands/{commandId}Batch offer publish / unpublish
OfferManagementApicreateChangePriceCommandUsingPUTPUT /offers/{offerId}/change-price-commands/{commandId}Modify the Buy Now price in an offer
OfferManagementApicreateProductOffersPOST /sale/product-offersCreate offer based on product
OfferManagementApideleteOfferUsingDELETEDELETE /sale/offers/{offerId}Delete a draft offer
OfferManagementApieditProductOffersPATCH /sale/product-offers/{offerId}Edit an offer
OfferManagementApigetAvailableOfferPromotionPackagesGET /sale/offer-promotion-packagesGet all available offer promotion packages
OfferManagementApigetOfferPromoOptionsUsingGETGET /sale/offers/{offerId}/promo-optionsGet offer promotion packages
OfferManagementApigetOffersUnfilledParametersUsingGET1GET /sale/offers/unfilled-parametersGet offers with missing parameters
OfferManagementApigetProductOfferProcessingStatusGET /sale/product-offers/{offerId}/operations/{operationId}Check the processing status of a POST or PATCH request
OfferManagementApigetPromoModificationCommandDetailedResultUsingGETGET /sale/offers/promo-options-commands/{commandId}/tasksModification command detailed result
OfferManagementApigetPromoModificationCommandResultUsingGETGET /sale/offers/promo-options-commands/{commandId}Modification command summary
OfferManagementApigetPromoOptionsForSellerOffersUsingGETGET /sale/offers/promo-optionsGet promo options for seller's offers
OfferManagementApigetPublicationReportUsingGETGET /sale/offer-publication-commands/{commandId}Publish command summary
OfferManagementApigetPublicationTasksUsingGETGET /sale/offer-publication-commands/{commandId}/tasksPublish command detailed report
OfferManagementApimodifyOfferPromoOptionsUsingPOSTPOST /sale/offers/{offerId}/promo-options-modificationModify offer promotion packages
OfferManagementApipromoModificationCommandUsingPUTPUT /sale/offers/promo-options-commands/{commandId}Batch offer promotion package modification
OfferRatingApiofferRatingGETGET /sale/offers/{offerId}/ratingGet offer rating
OfferTagsApiassignTagToOfferPOSTPOST /sale/offers/{offerId}/tagsAssign tags to an offer
OfferTagsApicreateTagPOST1POST /sale/offer-tagsCreate a tag
OfferTagsApideleteTagUsingDELETEDELETE /sale/offer-tags/{tagId}Delete a tag
OfferTagsApilistAssignedOfferTagsGETGET /sale/offers/{offerId}/tagsGet tags assigned to an offer
OfferTagsApilistSellerTagsGET1GET /sale/offer-tagsGet the user's tags
OfferTagsApiupdateTagPUTPUT /sale/offer-tags/{tagId}Modify a tag
OfferTranslationsApideleteManualTranslationUsingDELETEDELETE /sale/offers/{offerId}/translations/{language}Delete offer translation
OfferTranslationsApigetOfferTranslationUsingGETGET /sale/offers/{offerId}/translationsGet offer translations
OfferTranslationsApiupdateOfferTranslationUsingPATCHPATCH /sale/offers/{offerId}/translations/{language}Update offer translation
OfferVariantsApicreateVariantSetPOST /sale/offer-variantsCreate variant set
OfferVariantsApideleteVariantSetDELETE /sale/offer-variants/{setId}Delete a variant set
OfferVariantsApigetVariantSetGET /sale/offer-variants/{setId}Get a variant set
OfferVariantsApigetVariantSetsGET /sale/offer-variantsGet the user's variant sets
OfferVariantsApiupdateVariantSetPUT /sale/offer-variants/{setId}Update variant set
OrderManagementApiaddOrderInvoicesMetadataPOST /order/checkout-forms/{id}/invoicesPost new invoice
OrderManagementApicreateOrderShipmentsUsingPOSTPOST /order/checkout-forms/{id}/shipmentsAdd a parcel tracking number
OrderManagementApigetAllegroPickupDropOffPointsGETGET /order/carriers/ALLEGRO/pointsGet Allegro pickup drop off points
OrderManagementApigetListOfOrdersUsingGETGET /order/checkout-formsGet the user's orders
OrderManagementApigetOrderEventsStatisticsUsingGETGET /order/event-statsGet order events statistics
OrderManagementApigetOrderEventsUsingGETGET /order/eventsGet order events
OrderManagementApigetOrderInvoicesDetailsGET /order/checkout-forms/{id}/invoicesGet order invoices details
OrderManagementApigetOrderShipmentsUsingGETGET /order/checkout-forms/{id}/shipmentsGet a list of parcel tracking numbers
OrderManagementApigetOrdersCarriersUsingGETGET /order/carriersGet a list of available shipping carriers
OrderManagementApigetOrdersDetailsUsingGETGET /order/checkout-forms/{id}Get an order's details
OrderManagementApigetParcelTrackingUsingGETGET /order/carriers/{carrierId}/trackingGet carrier parcel tracking history
OrderManagementApisetOrderFulfillmentUsingPUTPUT /order/checkout-forms/{id}/fulfillmentSet seller order status
OrderManagementApiuploadOrderBillingDocumentLinkPOST /order/{orderId}/billing-documents/linksUpload URL to billing documents
OrderManagementApiuploadOrderInvoiceFilePUT /order/checkout-forms/{id}/invoices/{invoiceId}/fileUpload invoice file
PaymentsApigetPaymentsOperationHistoryGET /payments/payment-operationsPayment operations history
PaymentsApigetRefundedPaymentsGET /payments/refundsGet a list of refunded payments
PaymentsApiinitiateRefundPOST /payments/refundsInitiate a refund of a payment
PointsOfServiceApicreatePOSUsingPOSTPOST /points-of-serviceCreate a point of service
PointsOfServiceApideletePOSUsingDELETEDELETE /points-of-service/{id}Delete a point of service
PointsOfServiceApigetPOSDataUsingGETGET /points-of-service/{id}Get the details of a point of service
PointsOfServiceApigetPOSListUsingGETGET /points-of-serviceGet the user's points of service
PointsOfServiceApimodifyPOSUsingPUTPUT /points-of-service/{id}Modify a point of service
PostPurchaseIssuesApiaddMessageToIssueUsingPOSTPOST /sale/issues/{issueId}/messageAdd a message to an issue
PostPurchaseIssuesApichangeStatusOfIssueUsingPOSTPOST /sale/issues/{issueId}/statusChange status of a claim
PostPurchaseIssuesApicreateAnIssueAttachmentUsingPOSTPOST /sale/issues/attachmentsCreate an attachment declaration
PostPurchaseIssuesApigetChatFromIssueUsingGETGET /sale/issues/{issueId}/chatGet the messages and state claim changes within a post purchase issue
PostPurchaseIssuesApigetIssueAttachmentUsingGETGET /sale/issues/attachments/{attachmentId}Get an attachment
PostPurchaseIssuesApigetIssueUsingGETGET /sale/issues/{issueId}Get a single dispute or claim
PostPurchaseIssuesApigetListOfIssuesUsingGETGET /sale/issuesGet the user's post purchase issues
PostPurchaseIssuesApiuploadIssueAttachmentUsingPUTPUT /sale/issues/attachments/{attachmentId}Upload an attachment
PricingApicalculateFeePreviewUsingPOSTPOST /pricing/offer-fee-previewCalculate fee and commission for an offer
PricingApiofferQuotesPublicUsingGETGET /pricing/offer-quotesGet the user's current offer quotes
ProductsApigetFlatProductParametersUsingGETGET /sale/categories/{categoryId}/product-parametersGet product parameters available in given category
ProductsApigetProductChangeProposalGET /sale/products/change-proposals/{changeProposalId}Get all data of the particular product changes proposal
ProductsApigetSaleProductGET /sale/products/{productId}Get all data of the particular product
ProductsApigetSaleProductsGET /sale/productsGet search products results
ProductsApiproductChangeProposalPOST /sale/products/{productId}/change-proposalsPropose changes in product
ProductsApiproposeSaleProductPOST /sale/product-proposalsPropose a product
PublicOfferInformationApigetListingGET /offers/listingSearch offers
PublicUserInformationApigetUserSummaryUsingGETGET /users/{userId}/ratings-summaryGet any user's ratings summary
RebatesAndPromotionsApicreateOrModifyTurnoverDiscountUsingPUTPUT /sale/turnover-discount/{marketplaceId}Create/modify turnover discount for marketplace
RebatesAndPromotionsApicreatePromotionUsingPOST1POST /sale/loyalty/promotionsCreate a new promotion
RebatesAndPromotionsApideactivatePromotionUsingDELETEDELETE /sale/loyalty/promotions/{promotionId}Deactivate a promotion by id
RebatesAndPromotionsApideactivateTurnoverDiscountsUsingPUTPUT /sale/turnover-discount/{marketplaceId}/deactivateDeactivate turnover discount for marketplace
RebatesAndPromotionsApigetPromotionUsingGETGET /sale/loyalty/promotions/{promotionId}Get a promotion data by id
RebatesAndPromotionsApigetTurnoverDiscountsUsingGETGET /sale/turnover-discountGet the list of turnover discounts
RebatesAndPromotionsApilistSellerPromotionsUsingGET1GET /sale/loyalty/promotionsGet the user's list of promotions
RebatesAndPromotionsApiupdatePromotionUsingPUTPUT /sale/loyalty/promotions/{promotionId}Modify a promotion
ResponsiblePersonsApiresponsiblePersonsGETGET /sale/responsible-personsGet the list of responsible persons
ResponsiblePersonsApiresponsiblePersonsPOSTPOST /sale/responsible-personsCreate responsible person
ResponsiblePersonsApiresponsiblePersonsPUTPUT /sale/responsible-persons/{id}Update responsible person
ResponsibleProducersApiresponsibleProducerGETGET /sale/responsible-producers/{id}Get responsible producer
ResponsibleProducersApiresponsibleProducersGETGET /sale/responsible-producersGet the list of responsible producers
ResponsibleProducersApiresponsibleProducersPOSTPOST /sale/responsible-producersCreate responsible producer
ResponsibleProducersApiresponsibleProducersPUTPUT /sale/responsible-producers/{id}Update responsible producer
ShipmentManagementApicancelShipmentPOST /shipment-management/shipments/cancel-commandsCancel shipment
ShipmentManagementApicreateNewShipmentPOST /shipment-management/shipments/create-commandsCreate new shipment
ShipmentManagementApicreatePickupPOST /shipment-management/pickups/create-commandsRequest shipments pickup
ShipmentManagementApicreatePickupStatusGET /shipment-management/pickups/create-commands/{commandId}Create pickup command status
ShipmentManagementApigetDeliveryServicesGET /shipment-management/delivery-servicesGet available delivery services
ShipmentManagementApigetPickupDetailsGET /shipment-management/pickups/{pickupId}Get pickup details
ShipmentManagementApigetPickupProposalsPOST /shipment-management/pickup-proposalsGet shipments pickup proposals
ShipmentManagementApigetShipmentCancellationStatusGET /shipment-management/shipments/cancel-commands/{commandId}Get shipment cancellation status
ShipmentManagementApigetShipmentCreationStatusGET /shipment-management/shipments/create-commands/{commandId}Get shipment creation command status
ShipmentManagementApigetShipmentDetailsGET /shipment-management/shipments/{shipmentId}Get shipment details
ShipmentManagementApigetShipmentLabelsPOST /shipment-management/labelGet shipments labels
ShipmentManagementApigetShipmentProtocolPOST /shipment-management/protocolGet shipments protocol
SizeTablesApicreateTableUsingPOSTPOST /sale/size-tablesCreate a size table
SizeTablesApigetTableUsingGETGET /sale/size-tables/{tableId}Get a size table
SizeTablesApigetTablesTemplatesUsingGETGET /sale/size-tables-templatesGet the size tables templates
SizeTablesApigetTablesUsingGETGET /sale/size-tablesGet the user's size tables
SizeTablesApimodifyTableUsingPUTPUT /sale/size-tables/{tableId}Update a size table
TaxIdentificationNumberApiaddTaxIdPOST /fulfillment/tax-idAdd tax identification number
TaxIdentificationNumberApigetTaxIdGET /fulfillment/tax-idGet tax identification number
TaxIdentificationNumberApiupdateTaxIdPUT /fulfillment/tax-idUpdate tax identification number
TaxSettingsApigetTaxSettingsForCategoryGET /sale/tax-settingsGet all tax settings for category
UsersOfferInformationApigetOfferEventsGET /sale/offer-eventsGet events about the seller's offers
UsersOfferInformationApigetOfferSmartClassificationGETGET /sale/offers/{offerId}/smartGet Smart! classification report of the particular offer
UsersOfferInformationApigetPartialProductOfferGET /sale/product-offers/{offerId}/partsGet selected data of the particular product-offer
UsersOfferInformationApigetProductOfferGET /sale/product-offers/{offerId}Get all data of the particular product-offer
UsersOfferInformationApisearchOffersUsingGETGET /sale/offersGet seller's offers

Models

  • AdditionalEmail
  • AdditionalEmailRequest
  • AdditionalEmailsResponse
  • AdditionalMarketplacePromoOptionsCommandModification
  • AdditionalMarketplacePromoOptionsModification
  • AdditionalMarketplacePublication
  • AdditionalMarketplacePublicationState
  • AdditionalMarketplacePublicationStatus
  • AdditionalMarketplaceSellingMode
  • AdditionalMarketplacesRefusalReasonResponse
  • AdditionalMarketplacesRequestValue
  • AdditionalMarketplacesRequestValueSellingMode
  • AdditionalMarketplacesResponseValue
  • AdditionalMarketplacesResponseValuePublication
  • AdditionalMarketplacesVisibility
  • AdditionalPropertyDto
  • AdditionalServiceDefinitionRequest
  • AdditionalServiceDto
  • AdditionalServiceGroupTranslation
  • AdditionalServiceGroupTranslationPatchResponse
  • AdditionalServiceGroupTranslationResponse
  • AdditionalServiceRequest
  • AdditionalServiceResponse
  • AdditionalServiceTranslation
  • AdditionalServicesGroup
  • AdditionalServicesGroupRequest
  • AdditionalServicesGroupResponse
  • AdditionalServicesGroupTranslationRequest
  • AdditionalServicesGroupTranslationWrapper
  • AdditionalServicesGroupTranslationWrapperWithType
  • AdditionalServicesGroups
  • Address
  • AddressDto
  • AdvanceShipNotice
  • AdvanceShipNoticeList
  • AdvanceShipNoticeListItemResponse
  • AdvanceShipNoticeResponse
  • AdvanceShipNoticeStatus
  • AfterSalesServices
  • AfterSalesServicesAddress
  • AfterSalesServicesAttachment
  • AfterSalesServicesProductOfferRequest
  • AfterSalesServicesProductOfferRequestImpliedWarranty
  • AfterSalesServicesProductOfferRequestReturnPolicy
  • AfterSalesServicesProductOfferRequestWarranty
  • AiCoCreatedContent
  • AlleDiscountEligibleOfferDto
  • AlleDiscountEligibleOfferDtoAlleDiscount
  • AlleDiscountEligibleOfferDtoAlleDiscountCampaignConditions
  • AlleDiscountEligibleOfferDtoAlleDiscountCampaignConditionsViolationsInner
  • AlleDiscountEligibleOfferDtoAlleDiscountMinimumGuaranteedDiscount
  • AlleDiscountEligibleOfferDtoBasePrice
  • AlleDiscountEligibleOfferDtoProduct
  • AlleDiscountGetSubmitCommandResponse
  • AlleDiscountGetSubmitCommandResponseOutput
  • AlleDiscountGetSubmitCommandResponseOutputNewOfferParticipation
  • AlleDiscountGetWithdrawCommandResponse
  • AlleDiscountGetWithdrawCommandResponseInput
  • AlleDiscountGetWithdrawCommandResponseOutput
  • AlleDiscountGetWithdrawCommandResponseOutputWithdrawnOfferParticipation
  • AlleDiscountListCampaignsResponse
  • AlleDiscountListCampaignsResponseAlleDiscountCampaignsInner
  • AlleDiscountListCampaignsResponseAlleDiscountCampaignsInnerApplication
  • AlleDiscountListCampaignsResponseAlleDiscountCampaignsInnerMarketplace
  • AlleDiscountListCampaignsResponseAlleDiscountCampaignsInnerPublication
  • AlleDiscountListCampaignsResponseAlleDiscountCampaignsInnerVisibility
  • AlleDiscountListEligibleResponse
  • AlleDiscountListSubmittedResponse
  • AlleDiscountRequiredMerchantPriceDto
  • AlleDiscountSubmitCommandRequest
  • AlleDiscountSubmitCommandRequestInput
  • AlleDiscountSubmitCommandRequestInputCampaign
  • AlleDiscountSubmitCommandRequestInputOffer
  • AlleDiscountSubmitCommandRequestInputProposedPrice
  • AlleDiscountSubmitCommandResponse
  • AlleDiscountSubmitCommandResponseInput
  • AlleDiscountSubmitCommandResponseInputCampaign
  • AlleDiscountSubmitCommandResponseInputOffer
  • AlleDiscountSubmitCommandResponseInputProposedPrice
  • AlleDiscountSubmitCommandResponseOutput
  • AlleDiscountSubmittedOfferDto
  • AlleDiscountSubmittedOfferDtoCampaign
  • AlleDiscountSubmittedOfferDtoOffer
  • AlleDiscountSubmittedOfferDtoPrices
  • AlleDiscountSubmittedOfferDtoPricesMaximumSellingPrice
  • AlleDiscountSubmittedOfferDtoPricesMinimalPriceReduction
  • AlleDiscountSubmittedOfferDtoPricesProposedPrice
  • AlleDiscountSubmittedOfferDtoProcess
  • AlleDiscountSubmittedOfferDtoProcessErrorsInner
  • AlleDiscountWithdrawCommandRequest
  • AlleDiscountWithdrawCommandRequestInput
  • AlleDiscountWithdrawCommandResponse
  • AlleDiscountWithdrawCommandResponseInput
  • AlleDiscountWithdrawCommandResponseOutput
  • AllegroCarrier
  • AllegroMarketplaces
  • AllegroParcelTrackingHistory
  • AllegroParcelTrackingHistoryTrackingDetails
  • AllegroParcelTrackingStatus
  • AllegroPickupDropOffPoint
  • AllegroPickupDropOffPointAddress
  • AllegroPickupDropOffPointOpeningInner
  • AllegroPickupDropOffPointPaymentsInner
  • AllegroPickupDropOffPointRestrictionsInner
  • AllegroPickupDropOffPointServicesInner
  • AllegroPickupDropOffPointsResponse
  • AllegroPricesAccountChangeRequest
  • AllegroPricesAccountChangeRequestAdditionalMarketplacesValue
  • AllegroPricesAccountConsentChangeResponse
  • AllegroPricesEligibilityResponse
  • AllegroPricesEligibilityResponseAdditionalMarketplacesValue
  • AllegroPricesOfferChangeRequest
  • AllegroPricesOfferConsentChangeResponse
  • AllegroPricesQualificationResponse
  • AlreadyInWarehouseShipping
  • Answer
  • AnswerVBeta1
  • ApplicationTimePolicy
  • Attachment
  • AttachmentDeclaration
  • AttachmentFile
  • AttachmentFileRequest
  • AttachmentType
  • AttachmentsSafetyInformation
  • AttachmentsSafetyInformationAttachmentsInner
  • AuctionDetails
  • AuthError
  • AutomaticPricingOfferRuleConfiguration
  • AutomaticPricingOfferRuleConfigurationPriceRange
  • AutomaticPricingRuleConfiguration
  • AutomaticPricingRuleConfigurationChangeByAmount
  • AutomaticPricingRuleConfigurationChangeByAmountChangeByAmount
  • AutomaticPricingRuleConfigurationChangeByAmountChangeByAmountValuesInner
  • AutomaticPricingRuleConfigurationChangeByPercentage
  • AutomaticPricingRuleConfigurationChangeByPercentageChangeByPercentage
  • AutomaticPricingRulePostRequest
  • AutomaticPricingRulePutRequest
  • AutomaticPricingRuleResponse
  • AutomaticPricingRuleType
  • AutomaticPricingRulesResponse
  • AvailableConstraint
  • AvailableProductResponse
  • AvailableProductsList
  • AvailablePromotionPackage
  • AvailablePromotionPackages
  • AverageRates
  • B2b
  • Badge
  • BadgeApplication
  • BadgeApplicationBargainPrice
  • BadgeApplicationCampaign
  • BadgeApplicationDeclaredStock
  • BadgeApplicationOffer
  • BadgeApplicationPrices
  • BadgeApplicationProcess
  • BadgeApplicationPurchaseConstraints
  • BadgeApplicationPurchaseConstraintsLimit
  • BadgeApplicationPurchaseConstraintsLimitPerUser
  • BadgeApplicationRejectionReason
  • BadgeApplicationRejectionReasonMessage
  • BadgeApplicationRequest
  • BadgeApplicationSubsidySellerPrice
  • BadgeApplicationSubsidyTargetPrice
  • BadgeApplications
  • BadgeCampaign
  • BadgeCampaignStock
  • BadgeMarketPrice
  • BadgeOperation
  • BadgeOperationProcess
  • BadgePatchPrices
  • BadgePatchPricesPrices
  • BadgePatchPricesPricesBargain
  • BadgePatchProcess
  • BadgePatchProcessProcess
  • BadgePatchRequest
  • BadgePrices
  • BadgeProcess
  • BadgePublicationTimePolicy
  • BadgeSubsidyPrices
  • BadgesList
  • BaseOperation
  • BaseSaleProductResponseDto
  • BaseSaleProductResponseDtoPublication
  • BasicDefinitionResponse
  • Benefit
  • BenefitSpecification
  • BidRequest
  • BillingEntries
  • BillingEntry
  • BillingEntryAdditionalInfoInner
  • BillingEntryBalance
  • BillingEntryOffer
  • BillingEntryOrder
  • BillingEntryTax
  • BillingEntryType
  • BillingEntryValue
  • BillingType
  • BlockadeOperation
  • BlockadeReleaseOperation
  • BlockedDelivery
  • BundleDiscountDTO
  • BundleMarketplaceDTO
  • BundledOfferDTO
  • BuyNowPrice
  • BuyerParticipant
  • BuyerPreferencesReference
  • BuyerReference
  • CampaignRefusalReason
  • CampaignRequestDto
  • CampaignResponseDto
  • CancelShipmentCommandStatusDto
  • Caption
  • CarrierParcelTrackingResponse
  • CashOnDeliveryDto
  • CashOnDeliveryLimitDto
  • CategoriesDto
  • CategoriesResponse
  • Category
  • CategoryBaseEvent
  • CategoryCreatedEvent
  • CategoryDefinitionDescriptionResponse
  • CategoryDefinitionResponse
  • CategoryDeletedEvent
  • CategoryDeletedEventAllOfRedirectCategory
  • CategoryDto
  • CategoryDtoParent
  • CategoryEventBaseCategory
  • CategoryEventBaseCategoryParent
  • CategoryEventsResponse
  • CategoryMovedEvent
  • CategoryOptionsDto
  • CategoryParameter
  • CategoryParameterDisplayConditions
  • CategoryParameterList
  • CategoryParameterOptions
  • CategoryParameterRequirementConditions
  • CategoryParameterWithValue
  • CategoryParameterWithoutValue
  • CategoryParametersScheduledBaseChange
  • CategoryParametersScheduledBaseChangeCategory
  • CategoryParametersScheduledBaseChangeParameter
  • CategoryParametersScheduledChangesResponse
  • CategoryProductParameter
  • CategoryProductParameterList
  • CategoryRenamedEvent
  • CategoryResponse
  • CategorySuggestionCategoryNode
  • CategorySuggestionResponse
  • CategoryTaxSettings
  • Cells
  • ChangePrice
  • ChangePriceInput
  • ChangePriceWithoutOutput
  • ChangedParameterDto
  • ChangedTranslation
  • CharityOrganization
  • CheckFormsNewOrderInvoice
  • CheckFormsNewOrderInvoiceFile
  • CheckFormsNewOrderInvoiceId
  • CheckoutForm
  • CheckoutFormAddWaybillCreated
  • CheckoutFormAddWaybillCreatedLineItemsInner
  • CheckoutFormAddWaybillRequest
  • CheckoutFormAddWaybillRequestLineItemsInner
  • CheckoutFormAdditionalService
  • CheckoutFormBuyerAddressReference
  • CheckoutFormBuyerReference
  • CheckoutFormDeliveryAddress
  • CheckoutFormDeliveryCancellation
  • CheckoutFormDeliveryMethod
  • CheckoutFormDeliveryPickupPoint
  • CheckoutFormDeliveryPickupPointAddress
  • CheckoutFormDeliveryReference
  • CheckoutFormDeliveryTime
  • CheckoutFormDeliveryTimeDispatch
  • CheckoutFormDeliveryTimeGuaranteed
  • CheckoutFormFulfillment
  • CheckoutFormFulfillmentProvider
  • CheckoutFormFulfillmentShipmentSummary
  • CheckoutFormFulfillmentShipmentSummaryLineItemsSent
  • CheckoutFormFulfillmentStatus
  • CheckoutFormInvoiceAddress
  • CheckoutFormInvoiceAddressCompany
  • CheckoutFormInvoiceAddressCompanyId
  • CheckoutFormInvoiceAddressNaturalPerson
  • CheckoutFormInvoiceInfo
  • CheckoutFormLineItem
  • CheckoutFormLineItemTax
  • CheckoutFormMarketplace
  • CheckoutFormNoteReference
  • CheckoutFormOrderWaybillResponse
  • CheckoutFormPaymentProvider
  • CheckoutFormPaymentReference
  • CheckoutFormPaymentType
  • CheckoutFormReference
  • CheckoutFormStatus
  • CheckoutFormSummary
  • CheckoutFormSummaryTotalToPay
  • CheckoutForms
  • CheckoutFormsOrderInvoice
  • CheckoutFormsOrderInvoiceFile
  • CheckoutFormsOrderInvoiceFileSecurityVerification
  • CheckoutFormsOrderInvoices
  • CheckoutFormsOrderLink
  • ClaimStatusChangeRequest
  • ClassifiedDailyEventStatResponseDto
  • ClassifiedEventStat
  • ClassifiedExtension
  • ClassifiedExtraPackage
  • ClassifiedPackage
  • ClassifiedPackageConfig
  • ClassifiedPackageConfigs
  • ClassifiedPackages
  • ClassifiedPromotion
  • ClassifiedPublication
  • ClassifiedResponse
  • ClassifiedStatEventType
  • ClassifiedsPackages
  • CommandOutput
  • CommandTask
  • CommentVBeta1
  • CommissionResponse
  • Company
  • CompatibilityList
  • CompatibilityListIdItem
  • CompatibilityListIdItemAdditionalInfo
  • CompatibilityListItem
  • CompatibilityListItemProductBased
  • CompatibilityListManual
  • CompatibilityListManualType
  • CompatibilityListProductBased
  • CompatibilityListProductBasedProductOfferResponse
  • CompatibilityListProductOfferResponse
  • CompatibilityListSupportedCategoriesDto
  • CompatibilityListSupportedCategoriesDtoSupportedCategoriesInner
  • CompatibilityListSupportedCategoriesDtoSupportedCategoriesInnerValidationRules
  • CompatibilityListTextItem
  • CompatibleProductDto
  • CompatibleProductDtoAttributesInner
  • CompatibleProductDtoGroup
  • CompatibleProductsGroupsDto
  • CompatibleProductsGroupsDtoGroupsInner
  • CompatibleProductsListDto
  • CompensationCodChargeOperation
  • CompensationCodIncreaseOperation
  • CompensationOperation
  • Configuration
  • ConstraintCriteria
  • Contact
  • ContactRequest
  • ContactResponse
  • ContactResponseList
  • ContributionOperation
  • Coordinates
  • CorrectionOperation
  • Courier
  • CourierBySellerShipping
  • CpsConversion
  • CpsConversionCommission
  • CpsConversionCommissionAllegro
  • CpsConversionCommissionPublisher
  • CpsConversionMarketplace
  • CpsConversionOffer
  • CpsConversionOfferCategory
  • CpsConversionOfferSeller
  • CpsConversionOfferUnitPrice
  • CpsConversionResponse
  • CreateAdvanceShipNoticeRequest
  • CreateAdvanceShipNoticeResponse
  • CreateAfterSalesServiceConditionsAttachmentUsingPOSTRequest
  • CreateOfferBundleDTO
  • CreatePickupCommandStatusDto
  • CreateProductOffers422Response
  • CreateResponsiblePersonRequest
  • CreateResponsiblePersonRequestPersonalData
  • CreateResponsibleProducerRequest
  • CreateShipmentCommandStatusDto
  • CurrentPrice
  • CustomerReturn
  • CustomerReturnBuyer
  • CustomerReturnItem
  • CustomerReturnItemReason
  • CustomerReturnParcelSender
  • CustomerReturnRefund
  • CustomerReturnRefundBankAccount
  • CustomerReturnRefundBankAccountAddress
  • CustomerReturnRefundRejectionRequest
  • CustomerReturnRefundRejectionRequestRejection
  • CustomerReturnRejection
  • CustomerReturnResponse
  • CustomerReturnReturnParcel
  • Deduction
  • DeductionChargeOperation
  • DeductionIncreaseOperation
  • DeliveryBasic
  • DeliveryFull
  • DeliveryMethodId
  • DeliveryProductOfferRequest
  • DeliveryProductOfferRequestShippingRates
  • DeliveryProductOfferResponse
  • DeliveryServiceDto
  • DeliveryServiceIdDto
  • DeliveryServicesDto
  • DeliverySettingsRequest
  • DeliverySettingsRequestAbroadFreeDelivery
  • DeliverySettingsRequestFreeDelivery
  • DeliverySettingsRequestJoinPolicy
  • DeliverySettingsRequestMarketplace
  • DeliverySettingsResponse
  • DeliverySettingsResponseAbroadFreeDelivery
  • DeliverySettingsResponseCustomCost
  • DeliverySettingsResponseFreeDelivery
  • DeliverySettingsResponseJoinPolicy
  • DeliverySettingsResponseMarketplace
  • DepositType
  • DepositTypeResponse
  • DescribesListingFee
  • DescribesSuccessCommissionFee
  • DescriptionSection
  • DescriptionSectionItem
  • DescriptionSectionItemImage
  • DescriptionSectionItemText
  • DictionaryCategoryParameter
  • DictionaryCategoryParameterAllOfDictionary
  • DictionaryCategoryParameterAllOfRestrictions
  • DictionaryCategoryProductParameter
  • DictionaryCategoryProductParameterAllOfDictionary
  • DictionaryCategoryProductParameterAllOfRestrictions
  • DimensionValue
  • Discounts
  • DiscountsProductOfferRequest
  • DiscountsProductOfferRequestWholesalePriceList
  • DiscountsProductOfferResponse
  • DiscountsWholesalePriceList
  • EditProductOffers422Response
  • EmailRequest
  • EmailResponse
  • Error
  • Error400
  • Error403
  • Error404
  • Error504
  • ErrorsHolder
  • Exclusion
  • ExternalId
  • Fee
  • FeePreviewResponse
  • FloatCategoryParameter
  • FloatCategoryParameterAllOfRestrictions
  • FloatCategoryProductParameter
  • FloatCategoryProductParameterAllOfRestrictions
  • FormerCategoryParameterData
  • FormerParameterValueData
  • FulfillmentOrder
  • FulfillmentOrderParcel
  • FulfillmentOrderParcelItem
  • FulfillmentRemovalPreference
  • FulfillmentWithdrawalAddress
  • FundraisingCampaign
  • FundraisingCampaigns
  • GeneralReport
  • GetBadgeCampaignsList
  • GetDeliveryServices504Response
  • GetListOfDeliveryMethodsUsingGET200Response
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInner
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInnerShippingRatesConstraints
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInnerShippingRatesConstraintsFirstItemRate
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInnerShippingRatesConstraintsMaxPackageWeight
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInnerShippingRatesConstraintsMaxQuantityPerPackage
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInnerShippingRatesConstraintsNextItemRate
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInnerShippingRatesConstraintsShippingTime
  • GetListOfDeliveryMethodsUsingGET200ResponseDeliveryMethodsInnerShippingRatesConstraintsShippingTimeDefault
  • GetListOfShippingRatestUsingGET200Response
  • GetListOfShippingRatestUsingGET200ResponseShippingRatesInner
  • GetListOfShippingRatestUsingGET200ResponseShippingRatesInnerFeatures
  • GetListOfShippingRatestUsingGET200ResponseShippingRatesInnerMarketplacesInner
  • GetOfferSmartClassificationGET400Response
  • GetOfferSmartClassificationGET403Response
  • GetRefundApplications200Response
  • GetRefundedPayments200Response
  • GetSaleProductsResponse
  • GetSaleProductsResponseNextPage
  • GetShipmentDetails404Response
  • GetShippingRatesSetUsingGET200Response
  • HandlingUnit
  • Header
  • ImageUrl
  • ImpliedWarrantiesListImpliedWarrantyBasic
  • ImpliedWarranty
  • ImpliedWarrantyBasic
  • ImpliedWarrantyPeriod
  • ImpliedWarrantyRequest
  • ImpliedWarrantyResponse
  • InitializeRefund
  • InitializeRefundAdditionalServices
  • InitializeRefundDelivery
  • InitializeRefundOverpaid
  • InsuranceDto
  • IntegerCategoryParameter
  • IntegerCategoryParameterAllOfRestrictions
  • IntegerCategoryProductParameter
  • IntegerCategoryProductParameterAllOfRestrictions
  • Interlocutor
  • JustId
  • Justification
  • LabelRequestDto
  • LabelRequestDtoSummaryReport
  • Labels
  • LargeOrderDiscountBenefitSpecification
  • LargeOrderDiscountBenefitSpecificationAllOfDiscount
  • LargeOrderDiscountBenefitSpecificationAllOfOrderValue
  • LargeOrderDiscountBenefitSpecificationAllOfThresholds
  • LatestOrderEvent
  • LimitWithCurrencyDto
  • LineItemDeposit
  • LineItemDiscount
  • LineItemReconciliation
  • LineItemVoucher
  • LineItemVoucherValue
  • ListingCategory
  • ListingCategoryWithCount
  • ListingOffer
  • ListingResponse
  • ListingResponseCategories
  • ListingResponseFilters
  • ListingResponseFiltersValues
  • ListingResponseOffers
  • ListingResponseSearchMeta
  • ListingResponseSort
  • LoanDeductionChargeOperation
  • LoanDeductionIncreaseOperation
  • Location
  • ManualDescriptionTranslation
  • ManualProductSafetyInformationDescriptionTranslation
  • ManualSafetyInformationTranslation
  • ManualTitleTranslation
  • ManualTranslationUpdateRequest
  • MarketedBeforeGPSRObligation
  • MarketplaceAvailablePromotionPackages
  • MarketplaceItem
  • MarketplaceItemCurrencies
  • MarketplaceItemCurrency
  • MarketplaceItemLanguage
  • MarketplaceItemLanguages
  • MarketplaceItemShippingCountry
  • MarketplaceOfferPromoOption
  • MarketplaceReference
  • MarketplacesVisibility
  • MaxPrice
  • MeResponse
  • MeResponseBaseMarketplace
  • Message
  • MessageAdditionalInformation
  • MessageAttachmentId
  • MessageAttachmentInfo
  • MessageAuthor
  • MessageAuthorRole
  • MessageOffer
  • MessageOrder
  • MessageRelatedObject
  • MessageRequest
  • MessageToSellerSettings
  • MessagesList
  • MinimalPrice
  • Modification
  • ModificationAttachmentSafetyInformation
  • ModificationAttachmentSafetyInformationAllOfAttachments
  • ModificationDelivery
  • ModificationDiscounts
  • ModificationDiscountsWholesalePriceList
  • ModificationPayments
  • ModificationPublication
  • ModificationResponsiblePerson
  • ModificationResponsibleProducer
  • ModificationSafetyInformation
  • ModificationTextSafetyInformation
  • MultiPackBenefitSpecification
  • MultiPackBenefitSpecificationAllOfConfiguration
  • MultiPackBenefitSpecificationAllOfTrigger
  • MyBidResponse
  • NetPrice
  • NewAttachmentDeclaration
  • NewMessage
  • NewMessageInThread
  • NewOrderBillingDocumentLink
  • NewProductParameterDto
  • NoSafetyInformation
  • NullableTurnoverDiscountDto
  • OfferActivatedEvent
  • OfferAdditionalMarketplace
  • OfferAdditionalServices
  • OfferArchivedEvent
  • OfferAttachment
  • OfferAttachmentRequest
  • OfferAutomaticPricingCommand
  • OfferAutomaticPricingCommandModification
  • OfferAutomaticPricingModificationRemove
  • OfferAutomaticPricingModificationRemoveRemoveInner
  • OfferAutomaticPricingModificationSet
  • OfferAutomaticPricingModificationSetSetInner
  • OfferBadgeCampaign
  • OfferBidCanceledEvent
  • OfferBidPlacedEvent
  • OfferBundleDTO
  • OfferBundleDTOPublication
  • OfferBundlesDTO
  • OfferBundlesDTONextPage
  • OfferCategory
  • OfferCategoryRequest
  • OfferChangeCommand
  • OfferChangedEvent
  • OfferCriterium
  • OfferDelivery
  • OfferDeliveryCountriesChangedEvent
  • OfferDescriptionTranslation
  • OfferEndedEvent
  • OfferEventBaseOffer
  • OfferEventEndedOffer
  • OfferEventEndedOfferAllOfPublication
  • OfferEventExternalOffer
  • OfferEventExternalOfferForPriceChanges
  • OfferEventExternalOfferWithPublication
  • OfferFixedPrice
  • OfferId
  • OfferImageLinkUploadRequest
  • OfferImageUploadResponse
  • OfferImages
  • OfferListingDto
  • OfferListingDtoImage
  • OfferListingDtoV1AdditionalMarketplace
  • OfferListingDtoV1AdditionalMarketplacePublication
  • OfferListingDtoV1AdditionalMarketplaceSellingMode
  • OfferListingDtoV1AdditionalMarketplaceStock
  • OfferListingDtoV1B2b
  • OfferListingDtoV1Delivery
  • OfferListingDtoV1Publication
  • OfferListingDtoV1PublicationMarketplaces
  • OfferListingDtoV1SaleInfo
  • OfferListingDtoV1SellingMode
  • OfferListingDtoV1Stats
  • OfferListingDtoV1Stock
  • OfferLowestPrice
  • OfferMarketplacesPriceChanges
  • OfferMarketplacesPublication
  • OfferPrice
  • OfferPriceChangeCommand
  • OfferPriceChangedEvent
  • OfferProductSetProductReference
  • OfferProductSetReference
  • OfferPromoOption
  • OfferPromoOptions
  • OfferPromoOptionsForSeller
  • OfferPromoOptionsPendingChanges
  • OfferPromotion
  • OfferPublication
  • OfferQuantityChangeCommand
  • OfferQuoteDto
  • OfferQuotesDto
  • OfferRating
  • OfferRatingScoreDistributionInner
  • OfferRatingSizeFeedbackInner
  • OfferReference
  • OfferRequirements
  • OfferRules
  • OfferRulesRulesInner
  • OfferRulesRulesInnerMarketplace
  • OfferRulesRulesInnerRule
  • OfferSafetyInformationTranslation
  • OfferSeller
  • OfferSellingMode
  • OfferShippingRates
  • OfferStatModelDto
  • OfferStatResponseDto
  • OfferStatsResponseDto
  • OfferStatus
  • OfferStock
  • OfferStockChangedEvent
  • OfferTaxRate
  • OfferTaxSettings
  • OfferTitleTranslation
  • OfferTranslation
  • OfferTranslationType
  • OfferTranslationUpdatedEvent
  • OfferTranslations
  • OfferVendor
  • OfferVisibilityChangedEvent
  • OffersSearchResultDto
  • OpenHour
  • OperationParticipantAddress
  • OperationPayment
  • OperationValue
  • Order
  • OrderEvent
  • OrderEventData
  • OrderEventStats
  • OrderEventType
  • OrderEventsList
  • OrderLineItem
  • OrderLineItemOfferReference
  • OrderMarketplace
  • OrderOffersInner
  • OrdersShippingCarrier
  • OrdersShippingCarriersResponse
  • OwnTransportShipping
  • PackageDto
  • PackageRequestDto
  • Parameter
  • ParameterProductOfferRequest
  • ParameterProductOfferResponse
  • ParameterRangeValue
  • ParametersForPreviewPrice
  • ParcelAdditionalServicesAvailability
  • ParcelAdditionalServicesCashOnDeliveryAvailability
  • ParcelAdditionalServicesOptionAvailability
  • ParcelCreationAddress
  • ParcelCreationAddressWithMandatoryPlace
  • ParcelTrackingHistory
  • ParcelTrackingHistoryTrackingDetails
  • ParcelTrackingStatus
  • Participant
  • PatchBadge202Response
  • Payment
  • PaymentOperations
  • Payments
  • PaymentsSurcharge
  • Payout
  • PayoutOperation
  • PayoutOperationCancel
  • PhoneNumberWithCountryCode
  • PhonesRequest
  • PhonesResponse
  • PickupAddressDto
  • PickupCreateCommandDto
  • PickupCreateRequestDto
  • PickupDateProposalDto
  • PickupDateProposalsDto
  • PickupDto
  • PickupProposalsRequestDto
  • PickupProposalsResponseDto
  • Pos
  • PosLocation
  • PostPurchaseIssue
  • PostPurchaseIssueAttachment
  • PostPurchaseIssueAttachmentId
  • PostPurchaseIssueAuthor
  • PostPurchaseIssueChat
  • PostPurchaseIssueChatMessage
  • PostPurchaseIssueChatResponse
  • PostPurchaseIssueCheckoutForm
  • PostPurchaseIssueExpectation
  • PostPurchaseIssueFirstMessage
  • PostPurchaseIssueLastMessage
  • PostPurchaseIssueListResponse
  • PostPurchaseIssueMessage
  • PostPurchaseIssueMessageAuthor
  • PostPurchaseIssueOffer
  • PostPurchaseIssueProduct
  • PostPurchaseIssueReason
  • PostPurchaseIssueRefund
  • PostPurchaseIssueState
  • PostPurchaseIssueStatus
  • PostPurchaseIssueUser
  • Price
  • PriceAutomation
  • PriceAutomationRule
  • PriceModification
  • PriceModificationFixedPrice
  • PriceModificationFixedPriceHolder
  • PriceModificationPercentageChangeDecrease
  • PriceModificationPercentageChangeIncrease
  • PriceModificationValueChangeDecrease
  • PriceModificationValueChangeHolder
  • PriceModificationValueChangeIncrease
  • PricingOffer
  • PricingPublication
  • ProcessingStatus
  • Product
  • ProductCategory
  • ProductCategoryProposal
  • ProductCategoryWithPath
  • ProductChangeDto
  • ProductChangeDtoProduct
  • ProductChangeProposalDto
  • ProductChangeProposalRequest
  • ProductChangesResponse
  • ProductDeposit
  • ProductImageProposal
  • ProductItem
  • ProductNameProposal
  • ProductOffer
  • ProductOfferAdditionalServicesRequest
  • ProductOfferAdditionalServicesResponse
  • ProductOfferAttachmentInner
  • ProductOfferBase
  • ProductOfferFundraisingCampaignRequest
  • ProductOfferFundraisingCampaignResponse
  • ProductOfferResponse
  • ProductOfferResponsePublication
  • ProductParameter
  • ProductParameterDto
  • ProductParameterDtoOptions
  • ProductParameterOptions
  • ProductParameterProposal
  • ProductParameterValueProposal
  • ProductProposalsRequest
  • ProductProposalsResponse
  • ProductProposalsResponseCategory
  • ProductProposalsResponsePublication
  • ProductSafetyInformationDescription
  • ProductSetElement
  • ProductSetElementDeposits
  • ProductSetElementQuantity
  • ProductSetElementQuantityQuantity
  • ProductSetElementResponsiblePersonRequest
  • ProductSetElementResponsiblePersonRequestResponsiblePerson
  • ProductSetElementResponsibleProducerIdRequest
  • ProductSetElementResponsibleProducerNameRequest
  • ProductSetElementResponsibleProducerRequest
  • ProductSetElementResponsibleProducerRequestWrapper
  • ProductSetElementSafetyInformationRequest
  • ProductSetElementSafetyInformationRequestSafetyInformation
  • ProductSetElementSafetyInformationResponse
  • ProductSetElementSafetyInformationResponseSafetyInformation
  • ProductSimilarCategoryWithPath
  • ProductsCategoryPath
  • ProductsCategorySubcategories
  • PromoGeneralReport
  • PromoModificationReport
  • PromoModificationTask
  • PromoOptionsCommand
  • PromoOptionsCommandModification
  • PromoOptionsCommandModificationPackage
  • PromoOptionsModification
  • PromoOptionsModifications
  • Promotion
  • PromotionCampaignResponseDto
  • PromotionCampaignsResponseDto
  • PromotionRequestDto
  • PromotionResponseDto
  • ProviderRefundTransferChargeOperation
  • ProviderRefundTransferIncreaseOperation
  • PublicOfferPreviewRequest
  • PublicTableDto
  • PublicTablesDto
  • Publication
  • PublicationChangeCommandDto
  • PublicationModification
  • PublicationRequest
  • PublicationTimePolicy
  • QuantityModification
  • QuoteResponse
  • Rates
  • ReceiverAddressDto
  • ReceivingEntry
  • ReceivingState
  • ReceivingStatus
  • Recipient
  • Reference
  • RefundAdditionalServicesValue
  • RefundCancelOperation
  • RefundChargeOperation
  • RefundClaim
  • RefundClaimBuyer
  • RefundClaimCommission
  • RefundClaimLineItem
  • RefundClaimLineItemOffer
  • RefundClaimRequest
  • RefundClaimRequestLineItem
  • RefundClaimResponse
  • RefundDeliveryValue
  • RefundDetails
  • RefundIncreaseOperation
  • RefundLineItem
  • RefundLineItemDeposit
  • RefundLineItemDepositTotalValue
  • RefundLineItemValue
  • RefundOrder
  • RefundOverpaidValue
  • RefundPayment
  • RefundSurchargeValue
  • RefundTotalValue
  • RefusalMessage
  • RefusalReason
  • RelatedReason
  • Removal
  • RemovalRequest
  • RemovalRequestVBeta1
  • RemovalVBeta1
  • RequirementChange
  • ReserveInfo
  • ResponsiblePersonAddress
  • ResponsiblePersonContact
  • ResponsiblePersonResponse
  • ResponsiblePersonResponsePersonalData
  • ResponsiblePersonsGET200Response
  • ResponsibleProducerAddress
  • ResponsibleProducerContact
  • ResponsibleProducerResponse
  • ResponsibleProducerResponseProducerData
  • ResponsibleProducersGET200Response
  • RestrictionCause
  • ReturnPoliciesListReturnPolicyV1
  • ReturnPoliciesListReturnPolicyV2
  • ReturnPolicy
  • ReturnPolicyAddress
  • ReturnPolicyAvailability
  • ReturnPolicyContactV1
  • ReturnPolicyContactV2
  • ReturnPolicyOptions
  • ReturnPolicyRequestV1
  • ReturnPolicyRequestV2
  • ReturnPolicyResponseV1
  • ReturnPolicyResponseV2
  • ReturnPolicyReturnCost
  • ReturnPolicyUpdateRequestV2
  • SalePartialProductOfferResponse
  • SalePartialProductOfferResponseAdditionalMarketplacesValue
  • SalePartialProductOfferResponseAdditionalMarketplacesValueSellingMode
  • SalePartialProductOfferResponseSellingMode
  • SalePartialProductOfferResponseStock
  • SaleProductCompatibilityList
  • SaleProductDto
  • SaleProductDtoPublication
  • SaleProductOffer
  • SaleProductOfferPatchRequestV1
  • SaleProductOfferPatchRequestV1AllOfDelivery
  • SaleProductOfferPatchRequestV1AllOfProductSet
  • SaleProductOfferPublicationMarketplacesResponse
  • SaleProductOfferPublicationRequest
  • SaleProductOfferPublicationResponse
  • SaleProductOfferRequestBase
  • SaleProductOfferRequestBaseAllOfContact
  • SaleProductOfferRequestBaseAllOfDelivery
  • SaleProductOfferRequestBaseAllOfPublication
  • SaleProductOfferRequestBaseAllOfSizeTable
  • SaleProductOfferRequestV1
  • SaleProductOfferRequestV1AllOfDelivery
  • SaleProductOfferRequestV1AllOfProductSet
  • SaleProductOfferResponseV1
  • SaleProductOfferResponseV1AllOfProductSet
  • SaleProductOfferResponseV1AllOfProductSetAllOfProduct
  • SaleProductOfferResponseV1AllOfProductSetAllOfResponsiblePerson
  • SaleProductOfferResponseV1AllOfProductSetAllOfResponsibleProducer
  • SaleProductOfferStatusResponse
  • SaleProductOfferStatusResponseOperation
  • SaleProductOffersRequestStock
  • SaleProductResponseCategoriesDto
  • SaleProductSafetyDto
  • SaleProductSafetyDtoSafetyInformation
  • SalesQualityForDay
  • SalesQualityHistoryResponse
  • SalesQualityMetric
  • SearchResult
  • Seller
  • SellerCreateRebateRequestDto
  • SellerOfferBaseEvent
  • SellerOfferEventsResponse
  • SellerOfferStatsResponseDto
  • SellerParticipant
  • SellerRebateDto
  • SellerRebateOfferCriterion
  • SellerRebateOfferCriterionOffersInner
  • SellerRebatesDto
  • SellerReference
  • SellingMode
  • SellingModeFormat
  • SellingModeWithNetPrice
  • SenderAddressDto
  • ShipmentCancelCommandDto
  • ShipmentCancelRequestDto
  • ShipmentCreateCommandDto
  • ShipmentCreateRequestDto
  • ShipmentDto
  • ShipmentIdsDto
  • Shipping
  • ShippingBlockade
  • ShippingExtended
  • ShippingRate
  • ShippingRateDeliveryMethod
  • ShippingRateFirstItemRate
  • ShippingRateMaxPackageWeight
  • ShippingRateNextItemRate
  • ShippingRateShippingTime
  • ShippingRates
  • ShippingRatesSet
  • SinglePromotionCampaignResponseDto
  • SizeTable
  • SizeTablePostRequest
  • SizeTablePutRequest
  • SizeTableTemplateImageResponse
  • SizeTableTemplateResponse
  • SizeTableTemplatesResponse
  • SmartDeliveryMethod
  • SmartOfferClassificationReport
  • SmartOfferClassificationReportClassification
  • SmartOfferClassificationReportConditionsInner
  • SmartSellerClassificationReport
  • SmartSellerClassificationReportClassification
  • SmartSellerClassificationReportConditionsInner
  • StandardizedDescription
  • StartingPrice
  • Stock
  • StockProduct
  • StockProductItem
  • StockProductList
  • StockQuantity
  • StockSellingStats
  • StockStorageFee
  • StockStorageFeeDetails
  • StringCategoryParameter
  • StringCategoryProductParameter
  • StringCategoryProductParameterAllOfRestrictions
  • SubmitCommand
  • SubmitCommandInput
  • SubmitCommandOutput
  • SubmitFailedCommandOutput
  • SubmitRunningCommandOutput
  • SubmitSuccessfulCommandOutput
  • Surcharge
  • SurchargeOperation
  • TagId
  • TagIdsRequest
  • TagListResponse
  • TagRequest
  • TagResponse
  • TaskCount
  • TaskReport
  • Tax
  • TaxExemption
  • TaxIdRequest
  • TaxIdResponse
  • TaxRate
  • TaxRateValue
  • TaxSubject
  • TecdocSpecification
  • TecdocSpecificationItem
  • TextSafetyInformation
  • ThirdParty
  • ThirdPartyDeliveryShipping
  • Thread
  • ThreadId
  • ThreadReadFlag
  • ThreadsList
  • TopUpOperation
  • TrustedContent
  • TurnoverDiscountDefinitionDto
  • TurnoverDiscountDto
  • TurnoverDiscountRequest
  • TurnoverDiscountThresholdDto
  • TurnoverDiscountThresholdDtoDiscount
  • TurnoverDiscountThresholdDtoMinimumTurnover
  • UnfilledParametersResponse
  • UnfilledParametersResponseOffersInner
  • UnfilledParametersResponseOffersInnerCategory
  • UnfilledParametersResponseOffersInnerParametersInner
  • UpdateOfferBundleDiscountDTO
  • UpdateResponsiblePersonRequest
  • UpdateResponsibleProducerRequest
  • UpdateSubmittedAdvanceShipNoticeRequest
  • UpdateSubmittedHandlingUnitInput
  • UpdateSubmittedShippingInput
  • User
  • UserCampaignEligibility
  • UserRating
  • UserRatingAnswerRequest
  • UserRatingListResponse
  • UserRatingListResponseVBeta1
  • UserRatingRemovalRequest
  • UserRatingRemovalRequestRequest
  • UserRatingSummaryResponse
  • UserRatingSummaryResponseNotRecommended
  • UserRatingSummaryResponseRecommended
  • UserRatingSummaryResponseV2
  • UserRatingSummaryResponseV2NotRecommended
  • UserRatingSummaryResponseV2Recommended
  • UserRatingSummaryResponseV2Statistics
  • UserRatingSummaryResponseV2StatisticsExcluded
  • UserRatingSummaryResponseV2StatisticsReceived
  • UserRatingSummaryResponseV2StatisticsRemoved
  • UserRatingSummaryResponseV2User
  • UserRatingVBeta1
  • Validation
  • ValidationError
  • ValidationWarning
  • VariantSet
  • VariantSetOffer
  • VariantSetParameter
  • VariantSetResponse
  • VariantSets
  • VariantSetsVariantSet
  • VisibilityTimePolicy
  • Wallet
  • WalletBalance
  • WarrantiesListWarrantyBasic
  • Warranty
  • WarrantyAttachment
  • WarrantyBasic
  • WarrantyPeriod
  • WarrantyRequest
  • WarrantyResponse
  • WarrantyType
  • WeightValue
  • WholesalePriceListBenefitSpecification
  • WholesalePriceListBenefitSpecificationAllOfQuantity
  • WholesalePriceListBenefitSpecificationAllOfThresholds
  • WrapperTypeForPreviewConditions
  • WrapsListingAndCommissionsFees

Authorization

Authentication schemes defined for the API:

bearer-token-for-user

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://allegro.pl/auth/oauth/authorize
  • Scopes: N/A

bearer-token-for-application

  • Type: OAuth
  • Flow: application
  • Authorization URL: ``
  • Scopes: N/A

Author

OperoCRM - HexagonDev 2026

About this package

This PHP package is automatically generated by the OpenAPI Generator project:

  • API version: latest
    • Package version: 1.0.22
    • Generator version: 7.19.0
  • Build package: org.openapitools.codegen.languages.PhpClientCodegen