Create Export Job

Create Export job

POST https://{{accountSlug}}.myeshopbox.com/platform/api/v1/export-job

This endpoint allows you to create export job.

Headers

Name
Type
Description

Authorization

string

The Bearer token to access the API.

Request Body

Name
Type
Description

columnsExport

object

Fields to export

jobType

string

The type of task you want to run.

exportFilters

string

Filter parameters required while downloading the respective file.

channelId

string

channel id parameter

{
  "createdAt": "2019-12-19T21:21:25.346Z",
  "filePath": "",
  "id": "3686",
  "jobType": "product",
  "userId": "70",
  "channelId": "0",
  "fileType": "CSV",
  "status": "0",
  "updatedAt": "2019-12-19T21:21:25.346Z",
 "exportFilters": {
        "is":{
        "brand": [
                "TEST"
            ]
            },
        "is_not":{
        },
        "is_greater_than":{
        },
        "is_less_than":{
        },
        "is_greater_than_or_equal_to":{
        },
        "is_less_than_or_equal_to":{
        },
        "is_between":{
        }
    }
}

Last updated

Was this helpful?