Skip to main content
GET
/
tenant
/
{tenantId}
/
proposals
Retrieves a report of all transaction proposals for a tenant.
curl --request GET \
  --url https://api.example.com/tenant/{tenantId}/proposals
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.numium.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

Response

200 - application/json

Transaction proposals report retrieved successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
  "code": "ValidationError",
  "message": "The request parameters failed validation.",
  "info": [
    "The Name field is required.",
    "The Id field must be greater than 0."
  ]
}
value
object

The result value returned when the operation is successful.

Example:
{
  "transactionProposals": [
    {
      "proposalId": 10001,
      "blockchainId": 137,
      "blockchainName": "Polygon",
      "createdDate": "2024-01-10T12:00:00Z",
      "walletName": "Main Wallet",
      "walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
      "operationType": "Mint",
      "nonce": "15",
      "status": "Pending",
      "requiredSignatures": 2,
      "signaturesCollected": 1,
      "isApproveAvailable": true,
      "isExecuteAvailable": false,
      "isCancelAvailable": true
    }
  ]
}