-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contactvoorkeuren feature improvement #213
Comments
Jan presented this image as the desired UX for setting your messaging preferences: There are 4 important aspects:
Draft idea:
GET /api/v1/meldingtypen [
{
"categorieNaam": "Meldingen over uw zaken",
"naam": "Besluiten",
"code": "besluit", # This code needs to come from the notify component.
"mogelijkeKanaalCodes": [
"post", # These codes will be in the Referentielijsten API as possible channels.
"email",
"sms"
],
"verplichteKanaalCodes": ["post"]
},
{
"categorieNaam": "Meldingen over uw zaken",
"naam": "Statuswijzigingen",
"code": "status",
"mogelijkeKanaalCodes": [
"email",
"sms"
],
"verplichteKanaalCodes": ["email"]
},
{
"categorieNaam": "Nieuwsberichten",
"naam": "Updates van uw gemeente",
"code": "nieuws",
"mogelijkeKanaalCodes": [
"email"
],
"verplichteKanaalCodes": []
}
]
{
"verstrektDoorBetrokkene": {
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
},
"verstrektDoorPartij": {
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
},
"adres": "johndoe@example.com",
"soortDigitaalAdres": "email",
"omschrijving": "Persoonlijke e-mailadres",
"meldingsvoorkeuren": [ # New :)
"besluit",
"status"
]
} |
@JanBrek could you validate this? I denormalized category to make it simple. On client level, for UI purposes, you can simply group on the |
@joeribekker Looks alright. I am just thinking how for example 'post' will be registered as its not a digitaalAdres but comes from BRP (or similar in case of KVK) |
Thema / Theme
Contactgevens API
Omschrijving / Description
From Den Haag the request is to have more fine grained contact configuration.
(Pre-discussed with Joeri B)
Toegevoegde waarde / Added value
No response
Aanvullende opmerkingen / Additional context
No response
The text was updated successfully, but these errors were encountered: