verify_email_code
Use this after create_invoice returns verification_required. Arguments: { challenge_id, code }. On success returns a verification_token. Retry create_invoice with the same arguments plus that verification_token passed in its verification_token field. The token is reusable for ~30 min, so thread the same one into every subsequent create_invoice for the same sender email until it expires.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The 6-character code copied from the verification email body. Drawn from the confusable-free alphabet {2,3,4,5,6,7,8,9}. | |
| challenge_id | Yes | The opaque challenge id surfaced by the previous `create_invoice` `verification_required` error. |