PATCH /manager/popliste/{id}

Path parameters

  • id integer Required

    Numeric ID of the popliste to update

application/json

Body

  • active boolean
  • products array

Responses

  • 200 application/json

    Returns the updated popliste

  • 403

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

  • 404

    Popliste not found

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