Update the list of emails to notify when a lolo request is created

PUT /Api/LoloRequestCreatedNotifiers

Requires verified email; Requires one of the following permissions: Shop.UpdateLoloRequestCreatedNotifiers; Requires the following features to be enabled: Shop

Body

Responses

PUT /Api/LoloRequestCreatedNotifiers
curl \
 -X PUT https://app.lovassy.hu/Api/LoloRequestCreatedNotifiers \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"emails":["hello@example.com"]}'
curl \
 -X PUT https://app.lovassy.hu/Api/LoloRequestCreatedNotifiers \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: text/json"
curl \
 -X PUT https://app.lovassy.hu/Api/LoloRequestCreatedNotifiers \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/*+json"
Request examples
{
  "emails": [
    "hello@example.com"
  ]
}