> ## Documentation Index
> Fetch the complete documentation index at: https://docs.caratuva.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Recover a stalled onboarding: re-send the ToS acceptance link

> Re-mints a fresh single-use ToS acceptance link from the submission and payout payloads already captured by request-tos, and re-delivers it — without requiring the integrator to re-supply the KYC/KYB dossier. Use this when the original email bounced or the link expired. `delivery: 'email'` (default) emails the seller (requires the account's `email`); `delivery: 'link'` returns the `acceptUrl` for you to deliver yourself. Any previously outstanding link for this account is invalidated. Seller accounts only; the account must still be `created` with a captured payload.



## OpenAPI

````yaml https://api.caratuva.com/docs-json post /v1/accounts/{id}/resend-tos
openapi: 3.0.0
info:
  title: Caratuva API
  description: >-
    Cross-border B2B payments. Fiat on-ramp → USDC → PIX off-ramp.


    Every request runs in **test** or **live** mode on this single host — there
    is no separate sandbox URL. API keys carry the mode in their prefix
    (`pk_test_…` / `pk_live_…`); dashboard JWTs start in test and re-mint via
    `POST /v1/auth/switch-mode`. Test mode runs the full pipeline against a
    sandbox payment instance (KYB/KYC auto-approve, no real money); live runs on
    real rails and requires approved KYB. Test and live data are fully isolated.
    Check readiness with `GET /v1/onboarding/status`.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags:
  - name: Invoices
    description: Create and manage invoices that collect for one of your sellers.
  - name: Payments
    description: Create a payment (keep your own checkout), fetch it, or cancel it.
  - name: Accounts
    description: >-
      Onboard and manage your sellers, buyers, and your own (self) account at
      the settlement partner.
  - name: Webhooks
    description: Subscribe to outbound event notifications and manage signing secrets.
  - name: API keys
    description: Issue, list, and revoke the API keys that authenticate your integration.
  - name: Access
    description: Request and check production (live-mode) access for your organization.
  - name: Reports
    description: Pull settlement and transfer-pricing reports.
paths:
  /v1/accounts/{id}/resend-tos:
    post:
      tags:
        - Accounts
      summary: 'Recover a stalled onboarding: re-send the ToS acceptance link'
      description: >-
        Re-mints a fresh single-use ToS acceptance link from the submission and
        payout payloads already captured by request-tos, and re-delivers it —
        without requiring the integrator to re-supply the KYC/KYB dossier. Use
        this when the original email bounced or the link expired. `delivery:
        'email'` (default) emails the seller (requires the account's `email`);
        `delivery: 'link'` returns the `acceptUrl` for you to deliver yourself.
        Any previously outstanding link for this account is invalidated. Seller
        accounts only; the account must still be `created` with a captured
        payload.
      operationId: ConnectedAccountsController_resendTos
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                delivery:
                  type: string
                  enum:
                    - email
                    - link
                  default: email
              additionalProperties: false
            examples:
              default:
                value:
                  delivery: email
      responses:
        '201':
          description: >-
            Acceptance link re-minted and returned (and re-emailed to the seller
            when delivery=email)
          content:
            application/json:
              schema:
                type: object
                properties:
                  connectedAccountId:
                    type: string
                  acceptUrl:
                    type: string
                    format: uri
                  emailSent:
                    type: boolean
                required:
                  - connectedAccountId
                  - acceptUrl
                  - emailSent
                additionalProperties: false
              examples:
                default:
                  value:
                    connectedAccountId: ckacc042
                    acceptUrl: https://api.caratuva.com/v1/public/tos/start?t=def456
                    emailSent: true
        '400':
          description: >-
            TosResendUnavailable — No captured onboarding payload to resend, or
            ToS was already submitted/accepted (also: TosRequestSellerOnly,
            SellerEmailRequired).
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    example: 400
                  error:
                    type: string
                    example: TosResendUnavailable
                  message:
                    type: string
                    example: >-
                      No captured onboarding payload to resend, or ToS was
                      already submitted/accepted (also: TosRequestSellerOnly,
                      SellerEmailRequired).
      security:
        - apiKey: []
        - bearer: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````