GET
/
api
/
v1
/
delay-relay
List Delayed Transactions
const url = 'https://api.gnosispay.com/api/v1/delay-relay';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}, body: undefined};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
[
  {
    "id": "clp3j1f9a0000a1cdh6ezx2qv",
    "safeAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "transactionData": "0xabcdef",
    "enqueueTaskId": "task_abc123",
    "dispatchTaskId": "task_def456",
    "readyAt": "2025-02-07T12:34:56Z",
    "operationType": "CALL",
    "userId": "user_123",
    "status": "QUEUING",
    "createdAt": "2025-02-07T12:34:56Z"
  }
]

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"