transfer_msg

KeyTypeDescriptionRequired
headerobjectThis object is required in every call. The information it includes is used to verify the signature.true
messagestringThis tag specifies the JSON schema object to validate against. For this call, use transfer_msg.false
destinationstringHandle of recipient of Sila amount.true
amountfloatAmount of Sila to transfer.true
  

Used By Endpoints:

  • /transfer_sila

Note - We recently renamed the field auth_handle to app_handle. For backward compatibility, auth_handle is still valid but has been removed from our documentation.

  
{
  "header": {
    "created": 1234567890, 
    "app_handle": "handle.silamoney.eth", 
    "user_handle":"user.silamoney.eth", 
    "version": "0.2", 
    "crypto": "ETH", 
    "reference": "<your unique id>"
  }, 
  "message": "transfer_msg",
  "amount": 13,
  "destination": "user2.silamoney.eth"
}