This endpoint returns the supported payment methods (e.g., Card, Open Banking) for a given transaction context. It requires details about the sender’s country, transaction amount, and currency to determine the available options and applicable fees.
[https://trustremit.fincode.tech/api/v6/services/paymentmanagement/supported-payment-methods]( https://trustremit.fincode.tech/api/v6/services/paymentmanagement/supported-payment-methods )
The JWT Access Token of the authenticated user.
platform
string
default: "fincode"
required
Platform identifier. Use fincode.
uuid
string
default: "200"
required
Unique request identifier.
Content-Type
string
default: "application/json"
required
Must be application/json.
Request Body
The 3-letter ISO code of the sender’s country (e.g., GBR). Available from the login response.
transactionType
string
default: "PAYMENT_METHOD"
required
The type of transaction context. Always PAYMENT_METHOD.
The source currency code (e.g., GBP).
The Transaction Reference Number (PCN) obtained from the create transaction step.
payAbleType
string
default: "TRANSACTION"
required
The type of payable item. Always TRANSACTION.
The application identifier (e.g., com.app.your_app_identifier).
Response
Request status (e.g., SUCCESS).
Contains the payment method metadata. List of available payment methods. Show paymentMethodsMetadata item
The payment provider (e.g., VOLUME, SECURE_TRADING).
The payment type (e.g., ONLINE_BANK_PAYMENT, ONLINE_CARD_PAYMENT).
Indicates if the payment flow is hosted.
Provider-specific details for the payment flow (e.g., hosted_gateway_url, paymentIntentId).
The principal amount to be paid.
The total amount including fees.
URL to the payment terms and conditions.
Code Examples
curl -X POST 'https://remitjunction.fincode.software/api/v6/services/paymentmanagement/supported-payment-methods' \
--header 'X-Auth-Token: YOUR_JWT_ACCESS_TOKEN' \
--header 'platform: fincode' \
--header 'uuid: 200' \
--header 'Content-Type: application/json' \
--data '{
"countryIsoCode3": "GBR",
"transactionType": "PAYMENT_METHOD",
"currency": "GBP",
"pcn": "TR656516344451",
"amount": "2.000",
"payAbleType": "TRANSACTION",
"appId": "com.app.your_app_identifier"
}'