Skip to content

Resend Password Init Record

POST/web/v1/workspaces/admin/{workspaceBizId}/account-init-records/{recordBizId}/resendJWT

Resends the password initialization email for an account init record.

Authentication

Auth Chain: WEB Chain — requires Authorization: Bearer <jwt> System-injected headers (frontend does nothing): X-PORTAL-ACCESS-CODE (Nginx), X-Request-Id (Gateway)

Request Parameters

NameTypeRequiredInDescription
workspaceBizIdStringYespathBusiness ID of the workspace
recordBizIdStringYespathBusiness ID of the account init record

Success Response

Success200
{
  "version": "1.3.0",
  "timestamp": 1709337600000,
  "success": true,
  "code": "2000",
  "message": "SUCCESS",
  "data": {
    "resent": true
  }
}

Error Responses

Unauthorized401
{
  "success": false,
  "code": "4010",
  "message": "Invalid or expired token"
}

Notes

  • This is an admin-level endpoint requiring elevated workspace permissions.

Internal Documentation