All URIs are relative to https://api.beezup.com/v2
Method | HTTP request | Description |
---|---|---|
importation_cancel | POST /user/catalogs/{storeId}/importations/{executionId}/cancel | Cancel importation |
importation_commit | POST /user/catalogs/{storeId}/importations/{executionId}/commit | Commit Importation |
importation_commit_columns | POST /user/catalogs/{storeId}/importations/{executionId}/commitColumns | Commit columns |
importation_configure_remaining_catalog_columns | POST /user/catalogs/{storeId}/importations/{executionId}/configureRemainingCatalogColumns | Configure remaining catalog columns |
importation_get_importation_monitoring | GET /user/catalogs/{storeId}/importations/{executionId} | Get the importation status |
importation_get_reportings | GET /user/catalogs/{storeId}/importations | Get the latest catalog importation reporting |
importation_start_manual_update | POST /user/catalogs/{storeId}/importations/start | Start Manual Import |
importation_technical_progression | GET /user/catalogs/{storeId}/importations/{executionId}/technicalProgression | Get technical progression |
importation_cancel(store_id, execution_id, )
Cancel importation
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
execution_id = "execution_id_example" # String | The execution identifier of you catalog importation
begin
#Cancel importation
api_instance.importation_cancel(store_id, execution_id, )
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_cancel: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier | |
execution_id | String | The execution identifier of you catalog importation |
nil (empty response body)
- Content-Type: application/json
- Accept: application/json
importation_commit(store_id, execution_id, )
Commit Importation
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
execution_id = "execution_id_example" # String | The execution identifier of you catalog importation
begin
#Commit Importation
api_instance.importation_commit(store_id, execution_id, )
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_commit: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier | |
execution_id | String | The execution identifier of you catalog importation |
nil (empty response body)
- Content-Type: application/json
- Accept: application/json
importation_commit_columns(store_id, execution_id, )
Commit columns
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
execution_id = "execution_id_example" # String | The execution identifier of you catalog importation
begin
#Commit columns
api_instance.importation_commit_columns(store_id, execution_id, )
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_commit_columns: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier | |
execution_id | String | The execution identifier of you catalog importation |
nil (empty response body)
- Content-Type: application/json
- Accept: application/json
importation_configure_remaining_catalog_columns(store_id, execution_id, )
Configure remaining catalog columns
This operation should be used after you have mapped the required BeezUP Columns
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
execution_id = "execution_id_example" # String | The execution identifier of you catalog importation
begin
#Configure remaining catalog columns
api_instance.importation_configure_remaining_catalog_columns(store_id, execution_id, )
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_configure_remaining_catalog_columns: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier | |
execution_id | String | The execution identifier of you catalog importation |
nil (empty response body)
- Content-Type: application/json
- Accept: application/json
ImportationMonitoring importation_get_importation_monitoring(store_id, execution_id, )
Get the importation status
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
execution_id = "execution_id_example" # String | The execution identifier of you catalog importation
begin
#Get the importation status
result = api_instance.importation_get_importation_monitoring(store_id, execution_id, )
p result
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_get_importation_monitoring: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier | |
execution_id | String | The execution identifier of you catalog importation |
- Content-Type: application/json
- Accept: application/json
ImportationsResponse importation_get_reportings(store_id, )
Get the latest catalog importation reporting
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
begin
#Get the latest catalog importation reporting
result = api_instance.importation_get_reportings(store_id, )
p result
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_get_reportings: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier |
- Content-Type: application/json
- Accept: application/json
LinksImportationGetImportationMonitoringLink importation_start_manual_update(store_id, request)
Start Manual Import
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
request = SwaggerClient::StartManualImportRequest.new # StartManualImportRequest |
begin
#Start Manual Import
result = api_instance.importation_start_manual_update(store_id, request)
p result
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_start_manual_update: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier | |
request | StartManualImportRequest |
LinksImportationGetImportationMonitoringLink
- Content-Type: application/json
- Accept: application/json
ImportationTechnicalProgression importation_technical_progression(store_id, execution_id, )
Get technical progression
# load the gem
require 'swagger_client'
# setup authorization
SwaggerClient.configure do |config|
# Configure API key authorization: api_key
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
end
api_instance = SwaggerClient::CatalogsImportationProcessApi.new
store_id = "store_id_example" # String | Your store identifier
execution_id = "execution_id_example" # String | The execution identifier of you catalog importation
begin
#Get technical progression
result = api_instance.importation_technical_progression(store_id, execution_id, )
p result
rescue SwaggerClient::ApiError => e
puts "Exception when calling CatalogsImportationProcessApi->importation_technical_progression: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
store_id | String | Your store identifier | |
execution_id | String | The execution identifier of you catalog importation |
ImportationTechnicalProgression
- Content-Type: application/json
- Accept: application/json