Skip to main content
POST
/
product
/
download
/
metadata
Download Product Metadata
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/product/download/metadata \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "productIds": [
    "<string>"
  ]
}'
This response does not have an example.
/product/download/metadata Description:
The /product/download/metadata endpoint allows downloading metadata for products in various formats.
Method:
POST
Request Body:
ParameterTypeDescription
productIdsstring[]Array of product IDs to include in the metadata.
Query Parameters:
ParameterTypeDescription
formatstringFormat of the download (csv, json, xml). Default: csv

Authentication

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

Query Parameters

ParameterTypeInRequiredDescription
formatstringqueryāŒFormat of the download

Request Body

Request Schema

FieldTypeRequiredDescription
productIdsarrayāœ…Array of product IDs to include in the metadata

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}"

Query Parameters

format
enum<string>
default:csv

Format of the download

Available options:
csv,
json,
xml

Body

application/json
productIds
string[]
required

Array of product IDs to include in the metadata

Response

Success

The response is of type file.

⌘I