Create a transfer

Format

{
  
  // send :amount to :merchant_key marking funds as final
  "{:merchant_key}": "{:amount}",
  
  // other merchants
  ...
  
}
{
  
  // send :amount to :merchant_key
  "{:merchant_key}": {
    
    // to their :account_key
    "{:account_key}": "{:amount}",
    
    // other accounts
    ... 
    
  },
  
  // other merchants
  ... 
}
{
  
  // send funds to :merchant_key
  "{:merchant_key}": {
    
    // to their :acccount_key
    "{:account_key}": {
      
      // marking :amount_1 as final
      "final": "{:amount_1}",
      
      // marking :amount_2 as transferable
      "transferable": "{:amount_2}"
      
    },
    
    // other accounts
    ... 
    
  },
  
  // other merchants
  ... 
  
}
{
  "amount": "100.00",
  "currency": "USD",
  "cardId": "2330cd7d59ac4447804ecf37",
  "transfers": true
}
Language
Authorization
Click Try It! to start a request and see the response here!