Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

Form Verification Field

Input representation of form verification field requests.
JSON example
1{
2  "formVerificationFields": [
3    {
4      "developerName": "SampleAccountName",
5      "value": "Acme",
6    },
7    {
8      "developerName": "SampleAccountNumber",
9      "value": "123456",
10      "isVerified":true
11    },
12    {
13      "developerName": "SamplePhone",
14      "value": "4158764524"
15    },
16    {
17      "developerName": "SamplePostalCode",
18      "value": "51605"
19    }
20  ]
21  }
Properties
Name Type Description Required or Optional Available Version
developerName String Developer name of the identity verification process field. Required 58.0
isVerified Boolean Indicates whether the input that isn't submitted through a form field is verified (true) or not (false). The default value is false. Optional 58.0
value String Input value of the field. Required 58.0