Create a new lolo request

POST /Api/LoloRequests

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

Query parameters

Body

Responses

curl \
 -X POST https://app.lovassy.hu/Api/LoloRequests \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"title":"string","body":"string"}'
curl \
 -X POST https://app.lovassy.hu/Api/LoloRequests \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: text/json"
curl \
 -X POST https://app.lovassy.hu/Api/LoloRequests \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/*+json"
Request examples
{
  "title": "string",
  "body": "string"
}
Response examples (201)
{
  "id": 42,
  "title": "string",
  "body": "string",
  "userId": "string",
  "acceptedAt": "2024-05-04T09:42:00+00:00",
  "deniedAt": "2024-05-04T09:42:00+00:00"
}