Skip to main content
GET
List Delayed Transactions

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of delayed transactions for the authenticated user.

id
string

Unique identifier for the delayed transaction.

Example:

"clp3j1f9a0000a1cdh6ezx2qv"

safeAddress
string

The Safe contract address associated with the transaction.

Example:

"0x1234567890abcdef1234567890abcdef12345678"

transactionData
string

Data payload of the transaction.

Example:

"0xabcdef"

enqueueTaskId
string

Identifier of the task that enqueued this transaction.

Example:

"task_abc123"

dispatchTaskId
string | null

Identifier of the task responsible for dispatching this transaction.

Example:

"task_def456"

readyAt
string<date-time> | null

Timestamp indicating when the transaction is ready for processing.

Example:

"2025-02-07T12:34:56Z"

operationType
enum<string>

Type of operation being performed.

Available options:
CALL,
DELEGATECALL
Example:

"CALL"

userId
string

Identifier of the user associated with the transaction.

Example:

"user_123"

status
enum<string>

Current status of the transaction.

Available options:
QUEUING,
WAITING,
EXECUTING,
EXECUTED,
FAILED
Example:

"QUEUING"

createdAt
string<date-time>

Timestamp of when the transaction was created.

Example:

"2025-02-07T12:34:56Z"