Skip to main content
POST
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.

Request Headers

string
required
The JWT Access Token of the authenticated user.
string
default:"fincode"
required
Platform identifier. Use fincode.
string
default:"200"
required
Unique request identifier.
string
default:"application/json"
required
Must be application/json.

Request Body

string
required
The 3-letter ISO code of the sender’s country (e.g., GBR). Available from the login response.
string
default:"PAYMENT_METHOD"
required
The type of transaction context. Always PAYMENT_METHOD.
string
required
The source currency code (e.g., GBP).
string
required
The Transaction Reference Number (PCN) obtained from the create transaction step.
string
required
The transaction amount.
string
default:"TRANSACTION"
required
The type of payable item. Always TRANSACTION.
string
required
The application identifier (e.g., com.app.your_app_identifier).

Response

string
Request status (e.g., SUCCESS).
object
Contains the payment method metadata.

Code Examples