Transaction Types
curl --request GET \
--url https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types \
--header 'platform: <platform>' \
--header 'uuid: <uuid>'import requests
url = "https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types"
headers = {
"platform": "<platform>",
"uuid": "<uuid>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {platform: '<platform>', uuid: '<uuid>'}};
fetch('https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"platform: <platform>",
"uuid: <uuid>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("platform", "<platform>")
req.Header.Add("uuid", "<uuid>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types")
.header("platform", "<platform>")
.header("uuid", "<uuid>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["platform"] = '<platform>'
request["uuid"] = '<uuid>'
response = http.request(request)
puts response.read_bodyAPI Endpoints
Transaction Types
Retrieves a list of all supported transaction types available on the platform for the current organization.
GET
/
transactionmanagement
/
transaction-types
Transaction Types
curl --request GET \
--url https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types \
--header 'platform: <platform>' \
--header 'uuid: <uuid>'import requests
url = "https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types"
headers = {
"platform": "<platform>",
"uuid": "<uuid>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {platform: '<platform>', uuid: '<uuid>'}};
fetch('https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"platform: <platform>",
"uuid: <uuid>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("platform", "<platform>")
req.Header.Add("uuid", "<uuid>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types")
.header("platform", "<platform>")
.header("uuid", "<uuid>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{tenant}.fincode.software/api/v6/services/transactionmanagement/transaction-types")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["platform"] = '<platform>'
request["uuid"] = '<uuid>'
response = http.request(request)
puts response.read_bodyRetrieves 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.string
default:"fincode"
required
Platform identifier. Use
fincode.string
default:"200"
required
Unique request identifier.
Code Examples
curl --location 'https://{your-domain}.fincode.software/api/v6/services/transactionmanagement/transaction-types' \
--header 'platform: fincode' \
--header 'uuid: 200'
const axios = require('axios');
const BASE_URL =
'https://{your-domain}.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();
⌘I
