Navigate...

K

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 *

Don't have an API key?Get one at dashboard.multisender.app

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

400

Validation error

401

The request is not authorized

403

You do not have permission to access this resource

See Also

distribute()

Validate before triggering a single-step distribution

Generated Code