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

# List Delayed Transactions

> Returns an array of delayed transactions associated with the authenticated user, excluding failed transactions.



## OpenAPI

````yaml https://api.gnosispay.com/api-docs/spec.json get /api/v1/delay-relay
openapi: 3.0.0
info:
  title: GnosisPay API
  version: 1.0.0
  description: OpenAPI documentation for GnosisPay
servers:
  - url: https://api.gnosispay.com
security: []
tags:
  - name: Account Management
    description: Information about your Account
  - name: Authentication
    description: Authenticate to our API using SIWE
  - name: Card Management
    description: Manage all your Cards
  - name: IBAN
    description: Integrate with Monerium to issue IBANs
  - name: KYC
    description: KYC using Sumsub SDK
  - name: Physical Card Order
    description: Order a Physical Card and manage the process
  - name: Rewards
    description: Cashback Rewards
  - name: Safe Management
    description: Manage your Safe
  - name: Transactions
    description: Manage Card Transactions
  - name: User
    description: Manage User Information
  - name: Webhooks
    description: Manage Webhooks
paths:
  /api/v1/delay-relay:
    get:
      tags:
        - Safe Management
      summary: List Delayed Transactions
      description: >-
        Returns an array of delayed transactions associated with the
        authenticated user, excluding failed transactions.
      responses:
        '200':
          description: A list of delayed transactions for the authenticated user.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DelayTransaction'
        '401':
          description: Unauthorized, missing or invalid token.
        '500':
          description: Internal server error.
      security:
        - bearerAuth: []
components:
  schemas:
    DelayTransaction:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the delayed transaction.
          example: clp3j1f9a0000a1cdh6ezx2qv
        safeAddress:
          type: string
          description: The Safe contract address associated with the transaction.
          example: '0x1234567890abcdef1234567890abcdef12345678'
        transactionData:
          type: string
          description: Data payload of the transaction.
          example: '0xabcdef'
        enqueueTaskId:
          type: string
          description: Identifier of the task that enqueued this transaction.
          example: task_abc123
        dispatchTaskId:
          type: string
          nullable: true
          description: Identifier of the task responsible for dispatching this transaction.
          example: task_def456
        readyAt:
          type: string
          format: date-time
          nullable: true
          description: Timestamp indicating when the transaction is ready for processing.
          example: '2025-02-07T12:34:56Z'
        operationType:
          type: string
          enum:
            - CALL
            - DELEGATECALL
          description: Type of operation being performed.
          example: CALL
        userId:
          type: string
          description: Identifier of the user associated with the transaction.
          example: user_123
        status:
          type: string
          enum:
            - QUEUING
            - WAITING
            - EXECUTING
            - EXECUTED
            - FAILED
          description: Current status of the transaction.
          example: QUEUING
        createdAt:
          type: string
          format: date-time
          description: Timestamp of when the transaction was created.
          example: '2025-02-07T12:34:56Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````