> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Transaction Information

> Allows the client to get updated transaction information from the server.

## Overview

Allows the client to get updated transaction information from the server. It also allows the client to re-register the current Tab ID (from Events.js) and function to call, in case changes are registered with the server-side transaction object. Call this function to restart event notification if you navigate between pages.

## Authentication

Requires a valid JWT bearer token.

## Notes

This endpoint uses the request schema notation described in [Pattern matching](/guides/pattern-matching).


## OpenAPI

````yaml /test-api/openapi.yaml post /Agent/Wallet/GetTransactionInformation
openapi: 3.1.0
info:
  title: Neuron Agent API
  version: 1.0.0
  description: |-
    The Agent API exposes core Neuron functionality over HTTP so services can
    operate without a persistent XMPP connection. Endpoints are grouped by
    capability, starting with Accounts and XMPP messaging.
servers:
  - url: https://{host}
    variables:
      host:
        default: neuron.example.com
        description: Neuron domain issued to you.
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Crypto
  - name: Open intelligence
  - name: Legal and contracts
  - name: State machines
  - name: Storage
  - name: Tokens
  - name: Wallet
  - name: XMPP messaging
paths:
  /Agent/Wallet/GetTransactionInformation:
    post:
      tags:
        - Wallet
      summary: Get Transaction Information
      description: >-
        Allows the client to get updated transaction information from the
        server.
      operationId: post_Agent_Wallet_GetTransactionInformation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                transactionId:
                  type: string
                tabId:
                  type: string
                functionName:
                  type: string
              additionalProperties: true
              required:
                - transactionId
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  state:
                    type: string
                  started:
                    type: string
                    format: date-time
                  ended:
                    type: string
                    format: date-time
                  serviceId:
                    type: string
                  serviceProvider:
                    type: string
                  amount:
                    type: number
                    format: double
                  currency:
                    type: string
                  successUrl:
                    type: string
                  failureUrl:
                    type: string
                  cancelUrl:
                    type: string
                  clientUrl:
                    type: string
                additionalProperties: true
                required:
                  - id
                  - state
                  - started
                  - serviceId
                  - serviceProvider
                  - amount
                  - currency
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````