Contactpersoon::postInsert ========================== .. code-block:: json { "version": "0.1", "data": { "id": 2401, "voornaam": "Eva", "achternaam": "de Boer", "geslacht": "vrouw", "aanhef": "mevrouw", "adres": "Oeverstraat 42", "postcode": "9721AB", "plaats": "Groningen", "telefoon1": "+31612345678", "telefoon2": null, "email1": "eva.de.boer@example.com", "email2": null, "created_at": "2025-08-18T09:10:00+00:00", "updated_at": "2025-08-18T09:10:00+00:00" }, "meta": {} } Explanation: - **id**: integer. - **voornaam**: string|null. - **achternaam**: string|null. - **geslacht**: non-empty-string|null. - **aanhef**: string|null. - **adres**: string|null. - **postcode**: string|null. - **plaats**: string|null. - **telefoon1**: string|null. - **telefoon2**: string|null. - **email1**: string|null. - **email2**: string|null. - **created_at**: ISO 8601 creation datetime string. - **updated_at**: ISO 8601 last update datetime string. - Gender (`geslacht`) values: `man`, `vrouw`, `onbekend`.