Skip to main content
POST
/
product
/
download
/
csv
Download Products CSV
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/product/download/csv \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "productIds": [
    "<string>"
  ]
}'
This response does not have an example.
/product/download/csv Description:
The /product/download/csv endpoint allows downloading a CSV file containing product data.
Method:
POST
Request Body:
ParameterTypeDescription
productIdsstring[]Array of product IDs to include in the CSV. If not provided, all products will be included.

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Request Body

Request Schema

FieldTypeRequiredDescription
productIdsarrayArray of product IDs to include in the CSV

Responses

✅ 200 - Success

⚠️ 401 - Unauthorized

❌ 500 - Internal Server Error

Tags

Product

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Body

application/json
productIds
string[]

Array of product IDs to include in the CSV

Response

Success

The response is of type file.

I