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

# List signature transactions

> Returns signature transactions the authenticated user is party to, optionally filtered by status.



## OpenAPI

````yaml /api-reference/signatures/openapi.yaml get /v2/transactions
openapi: 3.0.0
info:
  title: Signatures API
  description: >-
    The Signatures API lets you create and manage signature requests and
    signature transactions, and drive documents through the signing and
    notarization process. All endpoints are authenticated with a bearer JWT.
  version: 2.0.0
  contact:
    name: Slate API Support
    email: api-support@slate.inc
    url: https://slate.inc
servers:
  - url: https://api.slate.inc/signatures
    description: Production
  - url: https://api.uat.slate.inc/signatures
    description: UAT (staging)
security:
  - bearerAuth: []
paths:
  /v2/transactions:
    get:
      summary: List signature transactions
      description: >-
        Returns signature transactions the authenticated user is party to,
        optionally filtered by status.
      operationId: getV2SignaturesTransactions
      parameters:
        - in: query
          name: owner
          required: true
          schema:
            type: string
          description: The client group for this request.
        - in: query
          name: filter
          required: false
          style: deepObject
          description: One or more fields and their values on which to filter results.
          schema:
            type: object
            required:
              - userMode
            properties:
              userId:
                type: string
              userMode:
                type: string
                default: legacy
                enum:
                  - legacy
                  - signer
                  - notary
                  - party
                description: >
                  How the user ID is used to filter the signature transactions.

                  - legacy: this user is the responsible party — the notary for
                  notary transactions, the signer for signature-only
                  transactions

                  - signer: this user is the signer

                  - notary: this user is the notary

                  - party: this user is party to the transaction (either the
                  signer or the notary)
              waitingForNotary:
                type: boolean
                description: >-
                  Only return transactions where a notary is assigned and the
                  notary has not yet indicated they are ready.
              status:
                $ref: '#/components/schemas/SignatureTransactionStatus'
      responses:
        '200':
          description: List of signature transactions retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  transactions:
                    type: array
                    items:
                      $ref: '#/components/schemas/SignatureTransactionSummary'
        '400':
          description: Invalid request parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized or invalid permissions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Unexpected internal error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SignatureTransactionStatus:
      type: string
      description: >-
        The status of the signature transaction. It starts in `pending` and
        transitions to `completed` or `failed`.
      enum:
        - pending
        - completed
        - failed
      x-enum-varnames:
        - SignatureTransactionStatusPending
        - SignatureTransactionStatusCompleted
        - SignatureTransactionStatusFailed
    SignatureTransactionSummary:
      type: object
      description: >-
        A lightweight view of a signature transaction without signing-provider
        identifiers, suitable for listing.
      required:
        - id
        - status
        - owner
        - signerId
        - signatureRequests
        - createdOn
      properties:
        id:
          type: string
          format: uuid
          description: The ID of the signature transaction.
        owner:
          type: string
          description: The ID of the owner.
        signerId:
          type: string
          description: The user ID of the signer.
        notaryId:
          type: string
          description: The user ID of the notary.
        signatureRequests:
          type: array
          description: The signature request IDs included in this transaction.
          items:
            type: string
            format: uuid
        status:
          $ref: '#/components/schemas/SignatureTransactionStatus'
        createdOn:
          type: string
          format: date-time
          description: Timestamp when the signature transaction was created.
        completedOn:
          type: string
          format: date-time
          description: Timestamp when the signature transaction was completed.
        failedOn:
          type: string
          format: date-time
          description: Timestamp when the signature transaction failed.
        otpRequired:
          type: boolean
          description: >-
            Whether an OTP token must be supplied to fetch the signing URL (true
            when the creditor's OTP method is email; SMS is handled natively in
            the signing ceremony).
        otpMethod:
          type: string
          description: The creditor's configured OTP method (e.g. `email` or `sms`).
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string
          description: A human-readable error message.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Cognito-issued JWT access token. Send it as `Authorization: Bearer
        <token>`.

````