Create an image product for a popliste (platform)

POST /platform/popliste/{id}/image

Path parameters

  • id integer Required

    Numeric ID of the popliste to update

multipart/form-data

Body

  • image

    The image to upload

    Maximum value is 2048.

Responses

  • 200 application/json

    Returns the updated popliste image product

  • 403

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

  • 404

    Popliste not found

POST /platform/popliste/{id}/image
curl \
 --request POST 'https://domain.tld/api/v2/platform/popliste/{id}/image' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: multipart/form-data" \
 --form "image=image.jpg"