Guthaben übertragen

Mit dieser Methode können Sie Guthaben auf ein Unterkonto übertragen.

POST

/account/transfer

Body-Parameter

to_account
notwendig
Die Konto-ID Ihres Unterkontos
credits
notwendig
Betrag des Guthabens

Beispiele


POST /account/transfer HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/json

{
  "transfer": {
     "to_account" : 1010101,
     "credits": 10
  }
}
          
        

POST /account/transfer HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/xml

<?xml version="1.0" encoding="UTF-8"?>
<transfer>
  <to_account>1010101</to_account>
  <credits>10</credits>
</transfer>
        
      

Ergebnisformat


{
  "status": 1,
  "message": "OK",
  "credits": "990",
  "child_credits": "1010"
}
          
        

<?xml version="1.0" encoding="UTF-8"?>
<response>
  <status>1</status>
  <message>OK</message>
  <credits>990</credits>
  <child_credits>1010</child_credits>
</response>