application/json

Body Required

  • active boolean

Responses

  • 201 application/json

    returns the created popliste

    Hide response attributes Show response attributes object
    • id_popliste integer
    • active boolean
    • products array
  • 403

    Forbidden - You don't have permission to access this route

POST /manager/popliste
curl \
 --request POST 'https://domain.tld/api/v2/manager/popliste' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"active":true}'
Request examples
{
  "active": true
}
Response examples (201)
{
  "id_popliste": 42,
  "active": true,
  "products": []
}