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

# Check Transaction Status

> Gets the Transaction Status



## OpenAPI

````yaml POST /api/transaction/status
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://test.digitaltermination.com
  - url: https://business-sandbox.instntmny.com
security: []
paths:
  /api/transaction/status:
    post:
      description: Gets the Transaction Status
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                transaction_id:
                  type: number
                  example: '22869'
              required:
                - transaction_id
      responses:
        '200':
          description: Ths status of the transaction.
          content:
            application/json:
              schema:
                type: object
                properties:
                  transaction:
                    type: object
                    properties:
                      id:
                        type: number
                        example: 27
                      merchant_id:
                        type: string
                        example: '5'
                      type:
                        type: string
                        example: Cr
                      medium:
                        type: string
                        example: Card
                      reference:
                        type: string
                        example: 1-2438378-0998
                      zeepay_id:
                        type: number
                        example: null
                      gateway_id:
                        type: string
                        example: null
                      amount:
                        type: number
                        example: 1.01
                      amount_details:
                        type: object
                        properties:
                          cc:
                            type: number
                            example: 0.02
                          send:
                            type: number
                            example: 1.01
                          receive:
                            type: number
                            example: 1
                      medium_details:
                        type: string
                        example: null
                      status:
                        type: number
                        example: '2'
                      status_message:
                        type: string
                        example: Request Sent, pending processing
                      sender_details:
                        type: object
                        properties:
                          'no':
                            type: number
                            example: null
                          name:
                            type: string
                            example: Kwesi Appiah
                          type:
                            type: number
                            example: 5
                          email:
                            type: string
                            example: kwesiappiah@test.com
                          card_number:
                            type: number
                            example: 12***********7889
                      recipient_details:
                        type: object
                        properties:
                          'no':
                            type: number
                            example: 5
                          name:
                            type: string
                            example: MS
                          type:
                            type: number
                            example: 8
                      reason:
                        type: string
                        example: null
                      description:
                        type: string
                        example: Payment
                      extra:
                        type: string
                        example: null
                      api:
                        type: number
                        example: 1
                      callback_url:
                        type: string
                        example: https://your-domain.com/webhook/payment-status
                      created_at:
                        type: string
                        example: '2020-04-14 16:18:31'
                      updated_at:
                        type: string
                        example: '2020-04-14 16:18:31'
                  type:
                    type: string
                    example: Success
                  message:
                    type: string
                    example: Transaction Retrieval Successful

````