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

# List Decisions

> Returns the approval decisions recorded against the Payout, newest-first.



## OpenAPI

````yaml GET /v1/payouts/{payoutId}/decisions
openapi: 3.0.0
info:
  title: Cleff API
  description: >-
    Payout orchestration platform. All endpoints under /v1/ require an API key
    in the Authorization header (Bearer ck_<env>_<id>_<secret>).
  version: 0.0.1
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/payouts/{payoutId}/decisions:
    get:
      tags:
        - Payouts
      summary: List the Decision history for a Payout
      description: >-
        Returns the approval decisions recorded against the Payout,
        newest-first.
      operationId: PayoutsController_listDecisions
      parameters:
        - name: payoutId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  decisions:
                    type: array
        '404':
          description: Payout not found
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      scheme: bearer
      bearerFormat: ck_<env>_<id>_<secret>
      type: http
      description: >-
        Cleff API key issued to a Business that self-registers via POST
        /v1/registration

````