Bot Signup

Resend a bot signup magic link

Resends the one-time sign-in (magic) link for an eligible bot signup account. Eligibility (account exists, was registered through bot signup, is active, and has not exceeded the resend limit or rate window) is evaluated server-side; the response is intentionally uniform and does not reveal whether the account exists or whether a link was actually sent. This endpoint is public and unauthenticated, gated by the freemium feature flags and per-country availability.

post/v2/bot_signup/resend_magic_link

Request body

emailstring email required

Email address of the bot signup account to resend the magic link to.

Example request

{
  "email": "agent-owner@example.com"
}

Response

Uniform acknowledgement, returned whether or not a link was sent.

successboolean required

Whether the request was accepted.

messagestring required

Human-readable status message.

Example response

{
  "success": true,
  "message": "A one-time sign-in link has been sent to your email address."
}

Changes