ApplicantData
Attributes
| Name | Type | Description |
|---|---|---|
| salutation | string | Output is depending on the locale settings. |
| firstname | string | — |
| lastname | string | — |
| string | — | |
| workEmail | string | If the applicant is an internal, the workEmails is set, else not. |
| username | string | — |
| password | string | Plain text password of the applicant. Not set when requesting data from database, but needed when you want to update the password. |
| policyAccepted | boolean | True if the applicant accepted the privacy policy, false if not. |
| locale | string | The locale settings of the applicant. |
| creatorIp | string | currently not used |
| internal | boolean | True if the applicant is an internal applicant, false if not. |
JSON response
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
{ "salutation" : "Mr.", "firstname" : "Joe", "lastname" : "Doe", "email" : "joe.doe@randomprovider.com", "workEmail" : "", "username" : "joedoe5", "password" : "p@ssw0rd", "policyAccepted" : false, "locale" : "en", "creatorIp" : "", "internal" : false } |