Export Products
POST/pcm/products/export
The Export API is available to make bulk updates to products in Product Experience Manager. You might also export products for your personal requirements.
The Export API builds a CSV file containing the product entries. A CSV file can contain up to 50,000 product entries. If you have more than 50,000 product entries, then another CSV file is created and so on, until all your products are exported.
The Job endpoint response specifies the location where the CSV file is stored. See Characteristics of CSV Files.
Filtering
The following attributes and operators are supported.
Operator | Attribute | Description | Example |
---|---|---|---|
eq | sku , slug , upc_ean , manufacturer_part_num , name , description , tags | Equals. Checks if the values of two operands are equal. If they are, the condition is true. When filtering on tags, you can only specify one product tag. | filter=eq(name,some-name) |
In | sku , tags | Checks if the values are included in the specified string. If they are, the condition is true. When filtering on tags, you can specify a list of product tags. | filter=in(id,some-id) |
like | sku , slug , upc_ean , manufacturer_part_num , name , description | Like. Checks if the operand contains the specified string. Wildcards are supported. | filter=like(name,some-name) |
Request
Responses
- 201
- 400
- 422
- 500
Export started
Bad request. The request failed validation.
Bad request. The request failed validation.
Internal server error. There was a system failure in the platform.