Skip to main content

Get pending approvals

GET 

/v1/transactions/pending-approval

Get pending approvals

This endpoint retrieves a list of transaction requests that are awaiting approval. It supports filtering by wallet ID, sorting, pagination, and searching within various fields such as transaction data, creation date, and user details. Additionally, it allows specifying a date range for the transactions. The response includes detailed information about each transaction, including sender and receiver details, transaction values, and associated metadata.

Request

Query Parameters

    wallet_id string

    Wallet id

    sort_by string

    Sort by

    order_by string

    Order by

    page int32

    Page

    page_size int32

    Page size

    search string

    Search

    end_date date-time

    End date

    start_date date-time

    Start date

Responses

Pending approval transactions

Schema
  • Array [
  • actionType stringrequired
    approvers object[]nullable
  • Array [
  • email stringnullable
    id uuidnullable
    name stringnullable
  • ]
  • createdAt date-timerequired
    data stringnullable
    deniers object[]nullable
  • Array [
  • email stringnullable
    id uuidnullable
    name stringnullable
  • ]
  • from stringrequired
    fromAccountApproversQuantity int32required
    fromAccountChainPath stringrequired
    fromAccountId uuidrequired
    fromAccountName stringrequired
    fromTokenCoingeckoId stringnullable
    fromTokenDecimals int32nullable
    fromTokenFiatValue doublenullable
    fromTokenId uuidnullable
    fromTokenName stringnullable
    fromTokenSymbol stringnullable
    fromUserId uuidnullable
    fromUserName stringnullable
    fromWalletOwnerId uuidrequired
    gasLimit stringnullable
    gasPrice stringnullable
    id uuidrequired
    maxFeePerGas stringnullable
    maxPriorityFeePerGas stringnullable
    networkId int32required
    nonce stringnullable
    signedTxRlp stringnullable
    to stringrequired
    toAccountId uuidnullable
    toAccountName stringnullable
    toContactAddress stringnullable
    toContactAddressName stringnullable
    toContactId uuidnullable
    toContactName stringnullable
    tokenAddress stringrequired
    tokenId stringnullable
    value stringnullable
  • ]
Loading...