Navigate...
Validate Distribution Recipients
sdk.lists.validateDistributionRecipients(req)
Validate a recipient set without creating a list. Returns valid: true when every entry passes, along with any warnings (for example, duplicate addresses). Use this as a dry-run before createDistributionList() or distribute() to catch issues up front.
API key required to run methods
API Key *
Base URL
request.recipients
ValidateDistributionRecipientDto[]
required
Array of { address?, amount? } — amount is in human-readable token units. Missing or malformed values are returned in aggregated row errors.
address,amount (one per line)
Returns
ValidateDistributionRecipientsResult
Validation summary
valid
boolean
true when every recipient is valid
warnings
string[]
Validation warnings (for example, duplicate addresses)
Errors
Validation error
The request is not authorized
You do not have permission to access this resource
See Also
createDistributionList()
Create the list once validation passes
distribute()
Validate before triggering a single-step distribution
Generated Code