CreateClientLeadRequestDto
Body for POST Api/ClientLeads — the public form a potential client fills in.
Поля
| Поле | Тип | Обязательное | Описание |
|---|---|---|---|
name | string | да | — |
phone | string | да | — |
email | string | null | нет | — |
postalCode | string | null | нет | — |
city | string | null | нет | — |
householdSupport | HouseholdSupportDto[] | да | Who needs the support. |
currentSituation | CurrentSituationDto[] | да | Where the person stands right now, e.g. a care level already assigned. |
utm | UtmRequestDto | null | нет | Marketing attribution of the page the form was submitted from. |
pageUrl | string | null | нет | — |
pageTitle | string | null | нет | — |
referrer | string | null | нет | — |
Пример
json
{
"name": "string",
"phone": "+49123456789",
"email": "user@example.com",
"postalCode": "string",
"city": "string",
"householdSupport": [],
"currentSituation": [],
"utm": "<utmrequestdto>",
"pageUrl": "https://...",
"pageTitle": "string",
"referrer": "string"
}