POST
/
products
/
{product_id}
/
preview
Upload a preview/catalogue page image for this API Product
curl --request POST \
  --url http://localhost:3001/portal-api/products/{product_id}/preview \
  --header 'Content-Type: multipart/form-data' \
  --form file=@example-file
{
  "status": "ok"
}

Path Parameters

product_id
integer
required

UID of an API Product

Example:

1

Body

multipart/form-data
file
file

image file to upload

Response

OK

status
string

Status of the operation

Example:

"ok"