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

# List Submission Transactions

> List every transaction on a submission (new business plus each endorsement, reinstatement, and cancellation) with a lightweight status summary. Use this to track how a policy has changed over time without pulling each transaction's full detail.

Results are scoped to the calling partner's own submissions. A display ID that does not exist, or that belongs to another company, returns `404` — existence is never revealed to a non-owner.



## OpenAPI

````yaml get /submission/{displayId}/transactions
openapi: 3.0.0
info:
  title: Cover Whale API V1
  contact:
    name: Cover Whale API Team
  version: '1.0'
servers:
  - url: https://api.coverwhale.dev/v1
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Authenticating & Interacting with the API
paths:
  /submission/{displayId}/transactions:
    get:
      tags:
        - Submissions
      summary: List Submission Transactions
      description: >-
        List every transaction on a submission (new business plus each
        endorsement, reinstatement, and cancellation) with a lightweight status
        summary. Use this to track how a policy has changed over time without
        pulling each transaction's full detail.


        Results are scoped to the calling partner's own submissions. A display
        ID that does not exist, or that belongs to another company, returns
        `404` — existence is never revealed to a non-owner.
      operationId: getSubmissionTransactions
      parameters:
        - name: Content-Type
          in: header
          required: true
          schema:
            type: string
          example: application/json
        - name: Accept
          in: header
          required: true
          schema:
            type: string
          example: application/json
        - name: AccessToken
          in: header
          required: true
          schema:
            type: string
          example: eyJraWQiOiJnRk5oTTh2RnRKWXVDVXU1S........
        - name: displayId
          in: path
          description: Submission display ID
          required: true
          schema:
            type: string
          example: '2261310'
      responses:
        '200':
          description: Transaction list
          content:
            application/json:
              schema:
                properties:
                  display_id:
                    type: string
                    example: '2261310'
                  transaction_count:
                    description: >-
                      Total number of transactions on the submission (new
                      business + endorsements + reinstatements + cancellations).
                    type: integer
                    example: 3
                  endorsement_count:
                    description: >-
                      Number of bound endorsement transactions (excludes
                      in-progress/quoted endorsements).
                    type: integer
                    example: 2
                  transactions:
                    type: array
                    items:
                      properties:
                        transaction_number:
                          description: >-
                            Sequential transaction index. `0` is always new
                            business; `1`, `2`, ... are subsequent
                            endorsements/reinstatements/cancellations.
                          type: integer
                          example: 0
                        transaction_type:
                          type: string
                          enum:
                            - NEW_BUSINESS
                            - RENEWAL
                            - ENDORSEMENT
                            - CANCELLATION
                            - REINSTATEMENT
                          example: NEW_BUSINESS
                        status:
                          description: >-
                            Status of this transaction (e.g. `Bound`, `Quoted`,
                            `In Review`, `Canceled`, `Reversed`).
                          type: string
                          example: Bound
                        effective_date:
                          type: string
                          format: date
                          example: '2025-10-03'
                      type: object
                type: object
                example:
                  display_id: '2261310'
                  transaction_count: 3
                  endorsement_count: 2
                  transactions:
                    - transaction_number: 0
                      transaction_type: NEW_BUSINESS
                      status: Bound
                      effective_date: '2025-10-03'
                    - transaction_number: 1
                      transaction_type: ENDORSEMENT
                      status: Bound
                      effective_date: '2025-11-04'
                    - transaction_number: 2
                      transaction_type: ENDORSEMENT
                      status: Quoted
                      effective_date: '2026-01-06'
        '404':
          description: Submission not found, or not owned by the calling partner
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                type: object
                example:
                  error: Submission not found
components:
  securitySchemes:
    AccessToken:
      type: apiKey
      description: >-
        AWS Cognito access token obtained from the /authentication endpoint.
        Token expires after 3600 seconds.
      name: AccessToken
      in: header

````