IDRX Documentation
  • Introduction
    • IDRX Whitepaper
    • Supported Chain and Contract Address
  • IDRX Account
    • Create Account
    • Sign In
    • Forgot Password
    • Account Verification (KYC)
    • Business Account
  • Services
    • Mint IDRX
    • Redeem IDRX
    • Bridge IDRX
    • Get Other Tokens
    • Redeem Other Stablecoin
    • Fees
  • API
    • Getting Started
    • Generating a Signature
    • Onboarding API
      • POST /api/auth/onboarding
      • GET /api/auth/members
      • POST /api/auth/add-bank-account
      • GET /api/auth/get-bank-accounts
      • DELETE /api/auth/delete-bank-account/:bankId
    • Transaction API
      • POST /api/transaction/mint-request
      • POST /api/transaction/redeem-request
      • POST /api/transaction/bridge-request
      • GET /api/transaction/method
      • GET /api/transaction/user-transaction-history
      • GET /api/transaction/rates
      • GET /api/transaction/get-additional-fees
  • Smart Contract
    • Staking
      • Staking Type
      • Staking IDRX
      • Claim Staking Reward
      • Unbond Staked IDRX
      • Claim Unbonded IDRX
      • Claim Principal and Staking Rewards
      • Application Binary Interface
  • Integration
    • Overview
    • Onboarding a new user
    • Managing bank accounts
    • Processing mint requests
      • Getting other tokens
    • Processing redeem requests
      • Redeeming from other tokens
Powered by GitBook
On this page
  • Example Request
  • Response
  1. API
  2. Transaction API

GET /api/transaction/method

Use this API to obtain the list of appropriate bank name format and bank codes.

Example Request

curl -X GET '<https://idrx.co/api/transaction/method>' --header 'idrx-api-key: <API_KEY>' --header 'idrx-api-sig: <signature>' --header 'idrx-api-ts': <timestamp>'

Response

If the request is successful, the response will be as shown below:

{
  "statusCode": 200,
  "message": "success",
  "data": [
    {
      "bankCode": "014",
      "bankName": "BANK CENTRAL ASIA",
      "maxAmountTransfer": "100000000"
    },
    {
      "bankCode": "002",
      "bankName": "BANK BRI",
      "maxAmountTransfer": "100000000"
    },
    {
      "bankCode": "200",
      "bankName": "BANK  BTN",
      "maxAmountTransfer": "50000000"
    },
    { .......
PreviousPOST /api/transaction/bridge-requestNextGET /api/transaction/user-transaction-history

Last updated 1 year ago

Page cover image