Challenge Object
Contains information about a business security challenge (question and answer).
This object is used by the following operations:
- Operations that reference the Challenges object
The properties included in the Challenge object are listed below.
| Property | Type | Description |
|---|---|---|
| ChallengeCode | string | The user challenge code. |
| ChallengeQuestion | string | The challenge question (must be uniquely worded). |
| MinimumLength | integer | The minimum length for the answer to the challenge question. |
| MaximumLength | integer | The maximum length for the answer to the challenge question. |
| MinimumAlphaCount | integer | The minimum number of letters that must exist in the answer to the challenge question. |
| MaximumAlphaCount | integer | The maximum number of letters that must exist in the answer to the challenge question. |
| MinimumNumberCount | integer | The minimum number of letters that must exist in the answer to the challenge question. |
| MaximumNumberCount | integer | The maximum number of numeric characters that must exist in the answer to the challenge question. |
| MinimumUpperCaseLetterCount | integer | The minimum number of uppercase lettersthat must exist in the answer to the challenge question. |
| MinimumSpecialCharacterCount | integer | The minimum number of special characters that must exist in the answer to the challenge question. |
| CanContainSpaces | boolean | Indicates whether the answer to the security challenge question can include spaces. |
| IsCaseSensitive | boolean | Indicates whether the answer to the security challenge question is case sensitive. |
| Active | boolean | Indicates whether this question is included on the list of choices when a user is setting up answers to security challenge questions. Default: true. Setting this value to false marks the question as inactive so that it isn't included on the list of questions users choose from when setting up security challenges. |
| AllowedSpecialCharacters | AllowedSpecialCharacters | Contains information about the special characters that are allowed in the context (such as, in the answer to a security challenge question). If no special characters are specified, all characters are allowed. |