v1

latestSwagger 2.0BeezUP2026-07-13254876845.8 KB
Catalogs - Auto

Get the auto import configuration

get/v2/user/catalogs/{storeId}/autoImport

Path parameters

storeIdstring guid required

Your store identifier

Response

Auto import configuration

inputConfiguredByUserIdstring guid required

The user identifier

schedulingType'Schedule' | 'Interval' required

Indicate the scheduling type. Schedule or Interval. We recommand you to use interval for a better reporting.

scheduledByUserIdstring guid

The user identifier

schedulingValuestring[] required

Indicate the scheduling value. If the scheduling type is Interval then the value will be a duration otherwise the values will be the time.

pausedboolean required

Indicate if the auto import is in pause or not.

pauseStatusChangedByUserIdstring guid

The user identifier

pauseStatusChangedUtcDatestring date-time

Indicate when the pause status has changed in UTC date.

schedulingLocalTimeZoneNamestring

Indicate the time zone name of the scheduling. If the scheduling type is "Schedule"

Example response

{
  "input": {
    "transformFileUrl": "http://beezupblob.com/Mytransformation.xslt",
    "files": [
      {
        "fetch": {
          "uri": "http://www.mywebsite.com/mycatalog.csv",
          "credential": {
            "userName": "MyLogin",
            "password": "MyPassword"
          },
          "downloadCatalogStrategy": "SimpleUri",
          "compressionFormatStrategy": "None",
          "compressedRelativePath": "folder/file.xxx"
        },
        "read": {
          "format": "Csv",
          "encodingTypeName": "UTF-8",
          "cultureName": "fr-FR",
          "csvFileReadProperties": {
            "csvSeparator": ";",
            "csvTextQualifier": "\""
          }
        }
      }
    ]
  },
  "inputConfiguredByUserId": "8a7fbdec-9e71-472e-9974-27d5c1d57cf8",
  "schedulingType": "Schedule",
  "scheduledByUserId": "8a7fbdec-9e71-472e-9974-27d5c1d57cf8",
  "schedulingValue": [
    "21:00:00",
    "23:00:00",
    "08:30:00"
  ],
  "pauseStatusChangedByUserId": "8a7fbdec-9e71-472e-9974-27d5c1d57cf8",
  "pauseStatusChangedUtcDate": "2017-04-01T13:21:42Z",
  "duplicateProductConfiguration": {
    "strategy": "KeepFirstDuplicateProductOnly",
    "compareOptions": "IgnoreCase"
  },
  "schedulingLocalTimeZoneName": "Romance Standard Time"
}