Skip to main content

Get transaction

GET 

/v1/transactions/:transactionId

Get transaction

This endpoint retrieves a specific transaction by its ID. It requires authentication and checks if the requesting user has access to the transaction's associated account. If authorized, it returns the transaction details; otherwise, it returns an error indicating lack of access or that the transaction was not found. This endpoint supports caching to reduce database load for frequently accessed transactions.

Request

Path Parameters

    transaction_id uuidrequired

    Transaction id

    transactionId uuidrequired

Responses

Transaction found

Schema
    action_type stringrequired
    approvers uuid[]nullable
    created_at date-timerequired
    deniers uuid[]nullable
    from_account_id uuidnullable
    from_user_id uuidnullable
    id uuidrequired
    network_id int32required
    status stringnullable
    to_account_id uuidnullable
    to_address stringrequired
    to_contact_id uuidnullable
    token_address stringnullable
    tx_data stringrequired
    type stringnullable
Loading...