https://builder.flowyte.com/api/v1.
Authenticate with
Authorization: Bearer flowyte_sk_…. Both endpoints below are replace (PUT) — send the full list each time.- A verifier skill that checks the caller’s answers against your system of record.
- A caller-verification config that ties a verification method to that verifier.
- A guardrail plus per-skill flags that block disclosure until the caller is verified.
What you’ll use
Verification methods
otp_sms sends a text, which requires per-organization 10DLC brand and campaign registration
before sends are allowed.1
Create the verifier skill
The verifier is a skill (commonly
db_query or http_webhook) that takes the caller’s claimed
identity plus a secret and returns whether they match. Capture its id — you’ll reference it
as verifierSkillId.2
Wire the verification config
Tie a method to the verifier.
tokenTtlSeconds controls how long a verification stays valid
on the call; maxAttempts caps retries; stepUpFor names actions that demand a re-check even
after basic verification.3
Add the guardrail and gate your skills
Add a
verify_before_disclose policy, then mark every skill that returns sensitive data with
requiresVerifiedIdentity: true. Use verificationLevel (basic or step_up) for
higher-risk actions, and allowedFields to cap what may be read back.