faq

Create Faq

post/api/faqs

Request body

titlestring required

FAQ title

textstring required

FAQ content

section_idstring nullable

Section UUID

positioninteger nullable

Sort position in section

Example request

{
  "position": 1,
  "section_id": "dfbe2671-1a53-4cc6-ae0a-f72f7eb0f960",
  "text": "Corabea ti aiuta a trovare supporto nutrizionale e psicologico.",
  "title": "Come funziona Corabea?"
}

Response

Successful Response

idstring required

FAQ UUID

created_atstring date-time required

FAQ creation timestamp

titlestring required

FAQ title

textstring required

FAQ content

positioninteger nullable

Sort position in section

sectionstring nullable

Section UUID

Example response

{
  "created_at": "2026-04-16T10:00:00Z",
  "id": "c4f8ec87-20f8-4fd2-9505-371d7da0f65d",
  "position": 1,
  "section": "dfbe2671-1a53-4cc6-ae0a-f72f7eb0f960",
  "section_ref": {
    "id": "dfbe2671-1a53-4cc6-ae0a-f72f7eb0f960",
    "name": "Generale"
  },
  "text": "Corabea ti aiuta a trovare supporto nutrizionale e psicologico.",
  "title": "Come funziona Corabea?"
}

Changes