Skip to main content
POST
/
products
Import products
curl --request POST \
  --url https://app.supercycle.com/api/v1/products \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "productIds": [
    123
  ]
}
'
{
  "productIds": [
    123
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
productIds
integer<int64>[]

Response

201 - application/json

An array of imported product IDs

productIds
integer<int64>[]