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

  • loloRequestsUrl string

Body

  • title string Required

    Minimum length is 1, maximum length is 255.

  • body string Required

    Minimum length is 1, maximum length is 65535.

  • Additional properties are NOT allowed

Body

  • title string Required

    Minimum length is 1, maximum length is 255.

  • body string Required

    Minimum length is 1, maximum length is 65535.

  • Additional properties are NOT allowed

Body

  • title string Required

    Minimum length is 1, maximum length is 255.

  • body string Required

    Minimum length is 1, maximum length is 65535.

  • Additional properties are NOT allowed

Responses

  • 201 application/json

    Created

    Hide response attributes Show response attributes object
    • id integer(int32)
    • title string | null
    • body string | null
    • userId string(uuid)
    • acceptedAt string(date-time) | null
    • deniedAt string(date-time) | null
    • Additional properties are NOT allowed
  • 401

    Unauthorized

  • 403

    Forbidden

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"
}