BananaTech
  1. Merchant related APIs
BananaTech
  • API Security Implementation Guide
  • Guides
    • 01-README
    • 02-Getting-Started
    • 03-Virtual-Cards
    • 04-Physical-Cards
    • 05-Card-Operations
  • Webhook
    • Integration Guide
    • Event Types
  • Merchant related APIs
    • Get Account Balance
      POST
    • Get Card Templates
      POST
    • Set Webhook URL
      POST
    • Get Webhook Records
      POST
  • User related APIs
    • Register
      POST
    • Get Users
      POST
  • Card related APIs
    • Apply
      POST
    • Recharge
      POST
    • Update Status
      POST
    • Get Balance
      POST
    • Get Information
      POST
    • Get Transactions
      POST
    • Assign (for Physical cards only)
      POST
    • Set PIN (for Physical cards only)
      POST
    • 3DS Confirm
      POST
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. Merchant related APIs

Get Card Templates

POST
/merchant/get_card_templates
Returns a list of available cards to apply

Request

Header Params

Body Params application/json

Example
{
    "skip": 0,
    "limit": 10,
    "search": "string",
    "start_date": "string",
    "end_date": "string",
    "bank_card_type": "string",
    "bank_card_nature": "string",
    "order_by": "string",
    "desc": true
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/merchant/get_card_templates' \
--header 'Merchant-ID;' \
--header 'X-HMAC;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "skip": 0,
    "limit": 10,
    "search": "string",
    "start_date": "string",
    "end_date": "string",
    "bank_card_type": "string",
    "bank_card_nature": "string",
    "order_by": "string",
    "desc": true
}'

Responses

🟢200Success
application/json
Body

Example
{
  "data": [
    {
      "id": 1,
      "title": "Virtual Premium Card",
      "description": "Premium virtual card for online payments",
      "type": "VIRTUAL",
      "payment_system": "VISA",
      "apply_fee": 5.0,
      "recharge_fee": 1.5,
      "refund_fee": 2.0,
      "activate_min_limit": 10.0,
      "recharge_min_limit": 5.0,
      "recharge_max_limit": 10000.0,
      "limit_per_tx": 5000.0,
      "limit_per_day": 10000.0,
      "limit_per_month": 50000.0,
      "requires_kyc": true,
      "requires_phone_only": false,
      "needs_activation": true,
      "requires_initial_deposit": false
    }
  ],
  "total": 25
}
Modified at 2025-12-23 13:00:06
Previous
Get Account Balance
Next
Set Webhook URL
Built with