/product/download/csv
Description:
The /product/download/csv
endpoint allows downloading a CSV file containing product data.
Method:
POST
Request Body:
Parameter | Type | Description |
---|---|---|
productIds | string[] | Array of product IDs to include in the CSV. If not provided, all products will be included. |
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.
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Success
The response is of type file
.
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.