Skip to main content
POST
/
v1#identity_get_by_email_address
Identity Lookup
curl --request POST \
  --url 'https://share-ddn.formless.xyz/v1#identity_get_by_email_address' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "identity_get_by_email_address",
  "params": {
    "email_address": "user@example.com"
  }
}'
{
  "jsonrpc": "2.0",
  "id": "<string>",
  "result": {
    "success": true,
    "user_unique_id": "<string>",
    "email_address": "jsmith@example.com",
    "display_name": "<string>",
    "verified_identity": true,
    "financial_accounts": [
      {}
    ],
    "verifications": [
      {}
    ]
  }
}
Retrieve user identity information based on an email address using the identity_get_by_email_address method.

Authorizations

Authorization
string
header
required

JWT token with Unique ID identification

Body

application/json
jsonrpc
enum<string>
default:2.0
required
Available options:
2.0
id
string
default:1
required
method
enum<string>
default:identity_get_by_email_address
required
Available options:
identity_get_by_email_address
params
object
required

Response

200 - application/json

Successful response

jsonrpc
enum<string>
required
Available options:
2.0
id
string
required
result
object
required
  • Option 1
  • Option 2
I