cURL
curl --request POST \ --url https://{tenantId}.api.nestmed.com/api/v1/forms/{formId}/validate \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "data": {} }'
{ "valid": true, "errors": [ { "field": "<string>", "value": "<unknown>", "message": "<string>", "type": "<string>" } ], "warnings": [ {} ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Validation result.
Show child attributes