type=request: Stuurt een verificatiecode naar het e-mailadres (body: email).type=validate: Controleert de code (body: email en code).curl --location --request POST '/auth/verification?type' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@example.com",
"code": "string"
}'