/resellers/import/template - Download CSV import template

GET /resellers/import/template

Download a UTF-8 CSV file pre-populated with the expected header row and a few example data rows for the reseller import flow. Columns: company_name, description, vat_number, address, city, main_contact, email, phone, language, notes. Sent as a text/csv attachment with Content-Disposition: attachment; filename="resellers_import_template.csv".

Responses

  • 200 text/csv

    CSV template downloaded

  • 401 application/json

    Unauthorized - invalid or missing token

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
  • 403 application/json

    Forbidden - insufficient permissions

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
GET /resellers/import/template
curl \
 --request GET 'https://collect.your-domain.com/api/resellers/import/template' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (401)
{
  "code": 401,
  "message": "invalid token",
  "data": {}
}
Response examples (403)
{
  "code": 403,
  "message": "insufficient permissions",
  "data": {}
}