Skip to main content
GET
/
proposals
/
{tenantId}
/
{proposalId}
/
approve
Retrieves approval details for a specific transaction proposal including custodians and required signatures.
curl --request GET \
  --url https://api.example.com/proposals/{tenantId}/{proposalId}/approve
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

proposalId
integer<int64>
required

Identifier of the transaction proposal.

Response

200 - application/json

Proposal approval details 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:
{
"proposalId": 10001,
"blockchainId": 137,
"network": "Polygon",
"operationType": "Mint",
"transactionJson": "{\"to\":\"0x1234...\",\"data\":\"0xabcdef\"}",
"safeWalletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"thresholdCurrent": 1,
"thresholdTotal": 2,
"custodianRows": [
{
"walletTenantId": 2048,
"walletName": "Main Wallet",
"walletAddress": "0x1234...",
"activeCustodians": 2,
"approval": 1,
"status": "Pending",
"blockchainId": 137
}
]
}