Ricarica/togli credito subaccount
danger
Attenzione: Le api rivenditore sono accessibili solo esclusivamente da indiritto https://NOMERIVENDITORE.web-servizi.net
Usare accesso come rivenditore. non è consentito usare accesso subaccount con chiave rivenditore.
Aggiungere o togliere credito ad un subaccount
POST /api/rest/v1/users/subaccounts/:id/transactions.[json|xml]
Parametri
Parametro | Tipo | Richiesto | Descrizione/Note |
---|---|---|---|
id | string (parametro url) | Sì | ID subaccount |
data .value | number | Sì | Valore della transazione |
data .type | enum('add', 'subtract') | Sì | Tipo transazione |
data .sms_cost | number | In base a impostazioni rivenditore | Obbligatorio se il rivenditore abilita i pacchetti |
Esempio richiesta
Bash (cURL)
curl --location 'https://rivenditore.web-servizi.net/api/rest/v1/users/subaccounts/1942/transactions.json' \
--header 'X-Api-Token: MyToken' \
--header 'Content-Type: application/json' \
--data '{
"data": {
"value": 12,
"type": "add",
"sms_cost": 0.1
}
}'
Esempio risposta
JSON
{
"amount": 12.200
}