Abrufen eines Unterkontos
Mit dieser Methode können Sie ein bestimmtes Unterkonto abrufen
GET
/sub-accounts/:id
Abfrage-Parameter
id
notwendig
|
Ein Unterkonto entsperren |
Beispiele
GET /sub-accounts/1010101 HTTP/1.1
Host: api.smsfactor.com
Accept: application/json
Authorization: Bearer your.token
Ergebnisformat
{
"status": 1,
"message": "OK",
"sub-account": {
"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>
</sub-account>
</response>