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

# Retry a failed payout

> Requires the `payout:retry` capability. TIER-GATED on the PAYOUT'S POLICY: 403 TIER_NOT_ENTITLED if that policy's settlementMode is DETERMINATION. A Tier 1 policy has no payouts at all.



## OpenAPI

````yaml /api-reference/openapi.json post /payouts/{payoutId}/retry
openapi: 3.1.0
info:
  title: MicroCrop Partner API
  version: 1.0.0
  description: >-
    Parametric crop & livestock insurance API for integrating partners. All
    requests authenticate with an organization API key in the `x-api-key`
    header.
servers:
  - url: https://app.microcrop.app/api
    description: Production (Base mainnet)
security:
  - apiKey: []
tags:
  - name: Farmers
  - name: Plots
  - name: Herds
  - name: Policies
  - name: Payments
  - name: Payouts
  - name: Organization
  - name: Determinations
paths:
  /payouts/{payoutId}/retry:
    post:
      tags:
        - Payouts
      summary: Retry a failed payout
      description: >-
        Requires the `payout:retry` capability. TIER-GATED on the PAYOUT'S
        POLICY: 403 TIER_NOT_ENTITLED if that policy's settlementMode is
        DETERMINATION. A Tier 1 policy has no payouts at all.
      parameters:
        - name: payoutId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Envelope:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: object
          properties:
            code:
              type: string
              example: INVALID_INPUT
            message:
              type: string
            details: {}
  responses:
    Forbidden:
      description: KYB verification required, or organization deactivated
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````