feat: Added example user data rest resource;
GET:
curl --location --request GET 'http://vluchtelingenwerk.devinc.eu/nl/user/data/vluchtelingenwerk/modal_seen?_format=json'
PATCH:
curl --location --request PATCH 'http://vluchtelingenwerk.devinc.eu/nl/user/data/vluchtelingenwerk/modal_seen?_format=json' \
--header 'Cookie: <cookies>' \
--header 'Content-Type: application/json' \
--header 'X-CSRF-Token: <token>' \
--data-raw '{
"value": "baz"
}'
Voor CSRF token:
curl --location --request GET 'http://vluchtelingenwerk.devinc.eu/nl/session/token'
Edited by Martijn Houtman