action beezup_get_marketplace_accounts_synchronization_v3 { label: "GetMarketplaceAccountsSynchronizationV3" description: "Get current synchronization status between your marketplaces and BeezUP accounts" provider: beezup method: GET path: "/orders/v3/status" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } storeIds: { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "object" properties: { accountSynchronizations: { type: "array" items: { type: "object" required: ["accountId", "marketplaceTechnicalCode", "marketplaceBusinessCode"] properties: { accountId: { type: "integer" format: "int32" description: "The marketplace account identifier in BeezUP. This account identifier is based on your api settings." } completedHarvestSynchroUtcDate: { type: "string" format: "date-time" } marketplaceBusinessCode: { type: "string" description: "In an marketplace technical code like CDiscount you can have several marketplaces like GO SPORT, etc. We identify them by a business code." } marketplaceTechnicalCode: { type: "string" description: "The technical code of the marketplace." } } } } } } }