Unterkonten abrufen
Mit dieser Methode können Sie Ihre Unterkonten abrufen
GET
/sub-accounts
Beispiele
GET /sub-accounts HTTP/1.1
Host: api.smsfactor.com
Authorization: Bearer your.token
Accept: application/json
Ergebnisformat
{
"status": 1,
"message": "OK",
"sub-accounts": [
{
"client_id": "1010101",
"email": "[email protected]",
"firstname": "Yoh",
"lastname": "Asakura",
"city": "Izumo",
"phone": "33612345678",
"address1": "Somewhere",
"address2": "Elsewere",
"zip": "36520",
"country": "",
"country_code": "FR",
"lang": "FR",
"credits": "0",
"unlimited": "1",
"description": "Shaman King Company",
"senderid": "",
"status": "1",
"time_zone": "Europe/Paris",
"current_month_consumption": 556,
"previous_month_consumption": 1203
}
]
}
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>1</status>
<message>OK</message>
<sub-account>
<client_id>1010101</client_id>
<email>[email protected]</email>
<firstname>Yoh</firstname>
<lastname>Asakura</lastname>
<city>Izumo</city>
<phone>33612345678</phone>
<address1>null</address1>
<address2>null</address2>
<zip>null</zip>
<country></country>
<lang>FR</lang>
<credits>0</credits>
<unlimited>1</unlimited>
<description>Shaman King Company</description>
<senderid></senderid>
<status>1</status>
<time_zone>Europe/Paris</time_zone>
<current_month_consumption>556</current_month_consumption>
<previous_month_consumption>1203</previous_month_consumption>
</sub-account>
</response>