entity_msg
Key | Type | Description | Required |
---|---|---|---|
header | This object is required in every call. The information it includes is used to verify the signature. | true | |
message | This tag specifies the JSON schema object to validate against. For this call, use entity_msg . | false | |
address | This object specifies the street address of the person being verified. | false | |
identity | This is used to specify an ID and what kind of ID is being specified. (As of writing, Sila only accepts U.S. Social Security Numbers, but this will expand in the future.) | optional | |
contact | This is where the verified person's phone number and email address are sent. | true | |
entity | Includes names, birthdates, and user type. | true |
Used by Endpoints:
- /register
Note - We recently renamed the field auth_handle
to app_handle
. For backward compatibility, auth_handle
is still valid but has been removed from our documentation.
{
"header": {
"created": 1234567890,
"app_handle": "app_handle",
"user_handle":"user_handle",
"version": "0.2",
"reference": "<your unique id>"
},
"message": "entity_msg",
"address": {
"address_alias": "Home Sweet Home",
"street_address_1": "123 SW Main St. Apt 143",
"city": "Portland",
"state": "Oregon",
"country": "US",
"postal_code": "97000"
},
"identity": {
"identity_alias": "SSN",
"identity_value": "123452222"
},
"contact": {
"contact_alias": "main",
"phone": "5035035035",
"email": "[email protected]"
},
"entity": {
"first_name": "Holly",
"last_name": "Golightly",
"entity_name": "Holly Golightly",
"birthdate": "1959-01-31",
"relationship": "user"
}
}
Updated 4 months ago