Create Verify
documentedCreate a verification token (OTP) to deliver via SMS, email, or voice.
POST /verifyVerify (OTP)no implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://rest.messagebird.com/verify" \
-X POST \
-H "Authorization: AccessKey {{MESSAGEBIRD_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"recipient": "{{$recipient}}", "originator": "{{$originator}}", "reference": "{{$reference}}", "type": "{{$type}}", "template": "{{$template}}", "datacoding": "{{$datacoding}}", "timeout": {{$timeout}}, "tokenLength": {{$tokenLength}}, "maxAttempts": {{$maxAttempts}}, "language": "{{$language}}", "subject": "{{$subject}}"}'