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

# Get Transaction Status

> Track the status of a specific transaction. Use this endpoint to check if a payment has been processed, is pending, or encountered any issues.



## OpenAPI

````yaml post /get_transaction_status
openapi: 3.0.0
info:
  title: TheBridge Developer API
  description: >-
    Welcome to TheBridge Developer API! This powerful interface allows you to
    seamlessly integrate our fintech solutions into your applications. With our
    API, you can process bank and mobile money transactions, check account
    balances, and simulate callbacks for testing. Get ready to revolutionize
    your financial operations with our secure and efficient API.
  version: 1.0.0
servers:
  - url: https://{api_host}
    variables:
      api_host:
        default: api.thebridgesolutions.com
security:
  - basicAuth: []
paths:
  /get_transaction_status:
    post:
      summary: Get Transaction Status
      description: >-
        Track the status of a specific transaction. Use this endpoint to check
        if a payment has been processed, is pending, or encountered any issues.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                service_id:
                  type: integer
                  description: >-
                    Your unique service identifier. This helps us locate the
                    correct account for the transaction.
                transaction_id:
                  type: string
                  description: >-
                    The unique identifier for the transaction you want to check.
                    This is the same ID you provided when initiating the
                    payment.
      responses:
        '200':
          description: >-
            Transaction status retrieved successfully. The response includes
            detailed information about the current state of the transaction.
          content:
            application/json:
              schema:
                type: object
                properties:
                  response_message:
                    type: string
                    description: >-
                      A detailed message about the current status of the
                      transaction, including any relevant information for your
                      records.
                  response_code:
                    type: string
                    description: >-
                      A code indicating the current status of the transaction.
                      Refer to our response code documentation to interpret this
                      code.
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic

````