Create a new lolo request
Requires verified email; Requires one of the following permissions: Shop.CreateLoloRequest; Requires the following features to be enabled: Shop
Query parameters
-
loloRequestsUrl
string
application/json
POST
/Api/LoloRequests
cURL (application/json)
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 example
{
"title": "string",
"body": "string"
}
Request examples
{
"title": "string",
"body": "string"
}
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"
}