Skip to main content
POST
/
zelle
/
validate
Validate Zelle Account
curl --request POST \
  --url https://sandbox.sturdytechnologies.com/v3/zelle/validate \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "<string>",
  "zelle_id": "user@example.com"
}
'
{
  "data": "null",
  "message": "Zelle ID validation request received. Status will be provided via webhook.",
  "success": true
}

Body

application/json

Validate Zelle Account payload

user_id
string
required

Unique identifier for the user

zelle_id
string
required

Zelle ID (email) to be validated.

Example:

"user@example.com"

Response

OK

data
string
Example:

null

message
string
Example:

"Zelle ID validation request received. Status will be provided via webhook."

success
boolean
Example:

true