Validate Email
POST /api/data/ValidateEmailAddressπ§ Validate an email address format before using it in a contract.
- π€ Send the email as a plain string in the request body (e.g.
"john.doe@example.com") - β Confirms standard email structure and format
Authorization
BearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
body*string
Email address to validate.
Response Body
curl -X POST "https://jubilee-ws.test.harmony.nl/api/data/ValidateEmailAddress" \ -H "Content-Type: application/json" \ -d 'test@test.com'