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

# Transaction Types

> Retrieves a list of all supported transaction types available on the platform for the current organization.

Retrieves a list of all currently active and supported transaction types (e.g., `ACCOUNTPAYMENT`, `CASH_PICKUP`, `BILL_PAYMENT`) available for the organization associated with the subdomain. This is typically used to populate selection menus when a user initiates a new transaction flow.

## Request Headers

This endpoint is typically **open/unauthenticated** and relies on the domain to identify the tenant.

<ParamField header="platform" type="string" required default="fincode">
        Platform identifier. Use `fincode`.
</ParamField>

<ParamField header="uuid" type="string" required default="200">
  Unique request identifier.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl --location 'https://remitjunction.fincode.software/api/v6/services/transactionmanagement/transaction-types' \
  --header 'platform: fincode' \
  --header 'uuid: 200'
  ```

  ```javascript Node.js theme={null}
  const axios = require('axios');

  const BASE_URL =
    'https://remitjunction.fincode.software/api/v6/services/transactionmanagement';

  async function getTransactionTypes() {
    try {
      const response = await axios.get(`${BASE_URL}/transaction-types`, {
        headers: {
          platform: 'fincode',
          uuid: '200',
        },
      });

      console.log('Supported Transaction Types:');
      response.data.data.forEach((type) => {
        console.log(`- ${type.name} (${type.code}) - Module: ${type.module}`);
      });

      return response.data.data;
    } catch (error) {
      console.error(
        'Failed to fetch transaction types:',
        error.response?.data || error.message
      );
      throw error;
    }
  }

  getTransactionTypes();
  ```
</CodeGroup>


## OpenAPI

````yaml GET /transactionmanagement/transaction-types
openapi: 3.0.0
info:
  title: FinCode API
  version: v6
servers:
  - url: https://{tenant}.fincode.software/api/v6/services
    description: API v6
    variables:
      tenant:
        default: remitjunction
        description: Enter your tenant subdomain
  - url: https://{tenant}.fincode.software/api/v1/services
    description: API v1
    variables:
      tenant:
        default: finlend
        description: Enter your tenant subdomain
  - url: https://api.stag.songhaiexchange.io
    description: Songhai Exchange API
security: []
paths:
  /transactionmanagement/transaction-types:
    get:
      summary: Transaction Types
      description: Retrieves supported transaction types
      operationId: transactionTypes
      parameters:
        - $ref: '#/components/parameters/platformHeader'
        - $ref: '#/components/parameters/uuidHeader'
      responses:
        '200':
          description: List of transaction types
components:
  parameters:
    platformHeader:
      in: header
      name: platform
      schema:
        type: string
        default: fincode
      required: true
    uuidHeader:
      in: header
      name: uuid
      schema:
        type: string
        default: '200'
      required: true

````