Poshmark
Poshmark's own support-center documentation (support.poshmark.com) for Bulk Upload — the CSV/template format and the zip-of-photos requirements for…
Poshmark's own support-center documentation (support.poshmark.com) for Bulk Upload — the CSV/template format and the zip-of-photos requirements for sellers listing many items at once.
Domain: poshmark.com
Also known as: Poshmark, poshmark, poshmark.com
Call it directly
bowmark.providers.poshmark.getBulkUploadTemplateGuide(): Promise<PoshmarkSupportArticle>
bowmark.providers.poshmark.getZipFileGuide(): Promise<PoshmarkSupportArticle>Functions
| Function | What it does |
|---|---|
getBulkUploadTemplateGuide | Reads Poshmark's own 'How to use Bulk Upload Templates' support article — required columns, SKU rules, the .csv file requirement, Excel-version caveats — straight off support.poshmark.com. |
getZipFileGuide | Reads Poshmark's own 'How to create a Zip file for Bulk Upload' support article — how to zip listing photos on Windows/Mac and which image types Bulk Upload accepts — straight off… |
Types
interface PoshmarkSupportArticle {
url: string;
text: string;
}Examples
// what does Poshmark's own documentation say about bulk-upload templates and zip photos?
const template = await bowmark.providers.poshmark.getBulkUploadTemplateGuide();
const zipFile = await bowmark.providers.poshmark.getZipFileGuide();
log(template.text);
log(zipFile.text);